1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-01 12:19:28 +00:00

Re-raise the default datasize and stacksize now that the 32 bit exec

support can clip it to sensible values.
This commit is contained in:
Peter Wemm 2003-09-25 01:11:17 +00:00
parent c460ac3a00
commit cc3112f108
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=120423

View File

@ -55,13 +55,13 @@
#define DFLDSIZ (128UL*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
#define MAXDSIZ (512UL*1024*1024) /* max data size */
#define MAXDSIZ (8192UL*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (8UL*1024*1024) /* initial stack size limit */
#endif
#ifndef MAXSSIZ
#define MAXSSIZ (64UL*1024*1024) /* max stack size */
#define MAXSSIZ (512UL*1024*1024) /* max stack size */
#endif
#ifndef SGROWSIZ
#define SGROWSIZ (128UL*1024) /* amount to grow stack */