summaryrefslogtreecommitdiffstats
path: root/sys/amd64/include/vmparam.h
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2003-09-25 01:11:17 +0000
committerpeter <peter@FreeBSD.org>2003-09-25 01:11:17 +0000
commit5505d235539dd343acef2fa9c7807b25c70be734 (patch)
tree5cd0c202627fa4bc3ffd765d959144c29a4fd421 /sys/amd64/include/vmparam.h
parent8ecb3577d83113cde0885b76799ccebb323abf8b (diff)
downloadFreeBSD-src-5505d235539dd343acef2fa9c7807b25c70be734.zip
FreeBSD-src-5505d235539dd343acef2fa9c7807b25c70be734.tar.gz
Re-raise the default datasize and stacksize now that the 32 bit exec
support can clip it to sensible values.
Diffstat (limited to 'sys/amd64/include/vmparam.h')
-rw-r--r--sys/amd64/include/vmparam.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/include/vmparam.h b/sys/amd64/include/vmparam.h
index 9336bab..d72b599 100644
--- a/sys/amd64/include/vmparam.h
+++ b/sys/amd64/include/vmparam.h
@@ -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 */
OpenPOWER on IntegriCloud