Increase the default data size limit from 512MB to 8GB. Increase default
stack limit from 64MB to 512MB.
This commit is contained in:
parent
848947c793
commit
24789c549a
@ -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 */
|
||||
|
Loading…
Reference in New Issue
Block a user