diff options
author | root <root@FreeBSD.org> | 1993-07-03 21:21:35 +0000 |
---|---|---|
committer | root <root@FreeBSD.org> | 1993-07-03 21:21:35 +0000 |
commit | a0b680d9d9b65fee5b0ca34cb99fa0b58262eedc (patch) | |
tree | b71a7cc2168ec454b344531ce229d1133f0c527f /sys | |
parent | 7048cfb1c8948ef84822c8eef8d0a8a8b200eb08 (diff) | |
download | FreeBSD-src-a0b680d9d9b65fee5b0ca34cb99fa0b58262eedc.zip FreeBSD-src-a0b680d9d9b65fee5b0ca34cb99fa0b58262eedc.tar.gz |
Increased default data size (DFLDSIZ) to 16MB. Need to rebuild libutil,
kernel, ps and w for this to work!
Diffstat (limited to 'sys')
-rw-r--r-- | sys/amd64/include/vmparam.h | 2 | ||||
-rw-r--r-- | sys/i386/include/vmparam.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/include/vmparam.h b/sys/amd64/include/vmparam.h index 39403d6..88c0887 100644 --- a/sys/amd64/include/vmparam.h +++ b/sys/amd64/include/vmparam.h @@ -63,7 +63,7 @@ */ #define MAXTSIZ (6*1024*1024) /* max text size */ #ifndef DFLDSIZ -#define DFLDSIZ (6*1024*1024) /* initial data size limit */ +#define DFLDSIZ (16*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ #define MAXDSIZ (32*1024*1024) /* max data size */ diff --git a/sys/i386/include/vmparam.h b/sys/i386/include/vmparam.h index 39403d6..88c0887 100644 --- a/sys/i386/include/vmparam.h +++ b/sys/i386/include/vmparam.h @@ -63,7 +63,7 @@ */ #define MAXTSIZ (6*1024*1024) /* max text size */ #ifndef DFLDSIZ -#define DFLDSIZ (6*1024*1024) /* initial data size limit */ +#define DFLDSIZ (16*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ #define MAXDSIZ (32*1024*1024) /* max data size */ |