summaryrefslogtreecommitdiffstats
path: root/sys/amd64/include/vmparam.h
diff options
context:
space:
mode:
authordg <dg@FreeBSD.org>1994-01-03 16:00:52 +0000
committerdg <dg@FreeBSD.org>1994-01-03 16:00:52 +0000
commit9f62521751a161dd26d7158844d2cee43d77c1b9 (patch)
tree4842182c78cbf437eab3944b0e238ee9f9375076 /sys/amd64/include/vmparam.h
parent7d2bd6aedc726f3bb86f0c01086ecbd45245179e (diff)
downloadFreeBSD-src-9f62521751a161dd26d7158844d2cee43d77c1b9.zip
FreeBSD-src-9f62521751a161dd26d7158844d2cee43d77c1b9.tar.gz
Increased maximum and default 'size' limits to more reasonable values.
Diffstat (limited to 'sys/amd64/include/vmparam.h')
-rw-r--r--sys/amd64/include/vmparam.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/amd64/include/vmparam.h b/sys/amd64/include/vmparam.h
index b7a3561..44128c5 100644
--- a/sys/amd64/include/vmparam.h
+++ b/sys/amd64/include/vmparam.h
@@ -34,7 +34,7 @@
* SUCH DAMAGE.
*
* from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91
- * $Id: vmparam.h,v 1.8 1993/11/07 17:43:17 wollman Exp $
+ * $Id: vmparam.h,v 1.9 1993/12/19 00:50:19 wollman Exp $
*/
@@ -65,18 +65,18 @@
/*
* Virtual memory related constants, all in bytes
*/
-#define MAXTSIZ (6UL*1024*1024) /* max text size */
+#define MAXTSIZ (16UL*1024*1024) /* max text size */
#ifndef DFLDSIZ
-#define DFLDSIZ (16UL*1024*1024) /* initial data size limit */
+#define DFLDSIZ (64UL*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (32UL*1024*1024) /* max data size */
+#define MAXDSIZ (128UL*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (512UL*1024) /* initial stack size limit */
#endif
#ifndef MAXSSIZ
-#define MAXSSIZ (8UL*1024*1024) /* max stack size */
+#define MAXSSIZ (64UL*1024*1024) /* max stack size */
#endif
/*
OpenPOWER on IntegriCloud