diff options
author | 1997-07-16 21:00:18 +0000 | |
---|---|---|
committer | 1997-07-16 21:00:18 +0000 | |
commit | d368fc0d79077357472187681b5183c5ff7d14a3 (patch) | |
tree | 1e84c8109b52b7b57dc5850cc4256614761cd687 | |
parent | fix Xr (diff) | |
download | wireguard-openbsd-d368fc0d79077357472187681b5183c5ff7d14a3.tar.xz wireguard-openbsd-d368fc0d79077357472187681b5183c5ff7d14a3.zip |
be more conservative
-rw-r--r-- | sys/arch/i386/include/vmparam.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/i386/include/vmparam.h b/sys/arch/i386/include/vmparam.h index f003d7771d5..336441df0f9 100644 --- a/sys/arch/i386/include/vmparam.h +++ b/sys/arch/i386/include/vmparam.h @@ -60,15 +60,15 @@ /* * Virtual memory related constants, all in bytes */ -#define MAXTSIZ (64*1024*1024) /* max text size */ +#define MAXTSIZ (16*1024*1024) /* max text size */ #ifndef DFLDSIZ -#define DFLDSIZ (128*1024*1024) /* initial data size limit */ +#define DFLDSIZ (16*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ #define MAXDSIZ (1*1024*1024*1024) /* max data size */ #endif #ifndef DFLSSIZ -#define DFLSSIZ (2*1024*1024) /* initial stack size limit */ +#define DFLSSIZ (1*1024*1024) /* initial stack size limit */ #endif #ifndef MAXSSIZ #define MAXSSIZ (32*1024*1024) /* max stack size */ |