aboutsummaryrefslogtreecommitdiff
path: root/sys/i386
diff options
context:
space:
mode:
authorDavid Greenman <dg@FreeBSD.org>1998-06-12 09:10:22 +0000
committerDavid Greenman <dg@FreeBSD.org>1998-06-12 09:10:22 +0000
commitf4fabec6b06196ec2bd1bf49c18371c47c3ef717 (patch)
tree88905c6747c0a1781c32cd6d83f1cd2431a46ce0 /sys/i386
parented7509ace472df6920d5f272cd966f74e6dab7ab (diff)
downloadsrc-f4fabec6b06196ec2bd1bf49c18371c47c3ef717.tar.gz
src-f4fabec6b06196ec2bd1bf49c18371c47c3ef717.zip
Increased MAXTSIZ to 128MB...there are binaries that get quite large.
Increased DFLDSIZ to 128MB, as it is a better default. Reviewed by: jkh
Notes
Notes: svn path=/head/; revision=36909
Diffstat (limited to 'sys/i386')
-rw-r--r--sys/i386/include/vmparam.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/i386/include/vmparam.h b/sys/i386/include/vmparam.h
index 4f188d6a65d0..d2e65e9c0fd4 100644
--- a/sys/i386/include/vmparam.h
+++ b/sys/i386/include/vmparam.h
@@ -36,7 +36,7 @@
* SUCH DAMAGE.
*
* from: @(#)vmparam.h 5.9 (Berkeley) 5/12/91
- * $Id: vmparam.h,v 1.28 1998/02/05 03:31:53 dyson Exp $
+ * $Id: vmparam.h,v 1.29 1998/02/23 07:42:40 dyson Exp $
*/
@@ -52,9 +52,9 @@
/*
* Virtual memory related constants, all in bytes
*/
-#define MAXTSIZ (16UL*1024*1024) /* max text size */
+#define MAXTSIZ (128UL*1024*1024) /* max text size */
#ifndef DFLDSIZ
-#define DFLDSIZ (64UL*1024*1024) /* initial data size limit */
+#define DFLDSIZ (128UL*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
#define MAXDSIZ (512UL*1024*1024) /* max data size */