Increased maximum and default 'size' limits to more reasonable values.
authorDavid Greenman <davidg@Root.COM>
Mon, 3 Jan 1994 16:00:52 +0000 (16:00 +0000)
committerDavid Greenman <davidg@Root.COM>
Mon, 3 Jan 1994 16:00:52 +0000 (16:00 +0000)
sys/i386/include/vmparam.h

index b7a3561..44128c5 100644 (file)
@@ -34,7 +34,7 @@
  * SUCH DAMAGE.
  *
  *     from: @(#)vmparam.h     5.9 (Berkeley) 5/12/91
  * 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 $
  */
 
 
  */
 
 
 /*
  * Virtual memory related constants, all in bytes
  */
 /*
  * 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
 #ifndef DFLDSIZ
-#define        DFLDSIZ         (16UL*1024*1024) /* initial data size limit */
+#define        DFLDSIZ         (64UL*1024*1024)        /* initial data size limit */
 #endif
 #ifndef MAXDSIZ
 #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
 #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
 
 /*
 #endif
 
 /*