diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-11-24 22:09:59 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-11-24 22:09:59 +0000 |
commit | f4557e9e25efa7d1b6281f645cf7aec7c8509c91 (patch) | |
tree | 3a1b311964a2d73dfb4317b178ca692808e68225 /sys/arch/vax | |
parent | ab644ba2fceb296f7981110fb3a5ffad3964cfa8 (diff) |
Increase MAXDSIZ to 128MB, and BRKSIZ to 16MB, now that we can afford this.
Also double DFLDSIZ.
Diffstat (limited to 'sys/arch/vax')
-rw-r--r-- | sys/arch/vax/include/vmparam.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/vax/include/vmparam.h b/sys/arch/vax/include/vmparam.h index 412cd23c27a..24dba6abb11 100644 --- a/sys/arch/vax/include/vmparam.h +++ b/sys/arch/vax/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.33 2013/07/05 21:10:50 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.34 2013/11/24 22:09:58 miod Exp $ */ /* $NetBSD: vmparam.h,v 1.32 2000/03/07 00:05:59 matt Exp $ */ /*- @@ -47,7 +47,7 @@ * USRTEXT is the start of the user text/data space, while USRSTACK * is the top (end) of the user stack. Immediately above the user stack * resides kernel. - * */ + */ #define USRTEXT PAGE_SIZE #define USRSTACK KERNBASE @@ -60,13 +60,13 @@ #define MAXTSIZ (8*1024*1024) /* max text size */ #endif #ifndef MAXDSIZ -#define MAXDSIZ (40*1024*1024) /* max data size */ +#define MAXDSIZ (128*1024*1024) /* max data size */ #endif #ifndef MAXSSIZ #define MAXSSIZ (8*1024*1024) /* max stack size */ #endif #ifndef DFLDSIZ -#define DFLDSIZ (4*1024*1024) /* initial data size limit */ +#define DFLDSIZ (8*1024*1024) /* initial data size limit */ #endif #ifndef DFLSSIZ #define DFLSSIZ (512*1024) /* initial stack size limit */ @@ -74,7 +74,7 @@ #define STACKGAP_RANDOM 32*1024 -#define BRKSIZ (8*1024*1024) +#define BRKSIZ (16*1024*1024) /* * Size of shared memory map |