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:
parent
c460ac3a00
commit
cc3112f108
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=120423
@ -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