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

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 */