diff options
author | kstailey <kstailey@cvs.openbsd.org> | 1997-06-04 22:51:03 +0000 |
---|---|---|
committer | kstailey <kstailey@cvs.openbsd.org> | 1997-06-04 22:51:03 +0000 |
commit | d6ea17a745f9d13158d1596ca5b72f7e89c71b52 (patch) | |
tree | 3337333e91507fa0b86f18a3e50e6cc5b5d67e45 /sys/arch/i386 | |
parent | 92139d641a6d74817abb11110b82a46184d10ad5 (diff) |
Raise memory resource limits, drive by the need to run netscape 4.0b5
which has a text segment of > 8MB.
If you maintain a port you might want to do the same.
Diffstat (limited to 'sys/arch/i386')
-rw-r--r-- | sys/arch/i386/include/vmparam.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/i386/include/vmparam.h b/sys/arch/i386/include/vmparam.h index 00f9036cca8..f003d7771d5 100644 --- a/sys/arch/i386/include/vmparam.h +++ b/sys/arch/i386/include/vmparam.h @@ -60,18 +60,18 @@ /* * Virtual memory related constants, all in bytes */ -#define MAXTSIZ (8*1024*1024) /* max text size */ +#define MAXTSIZ (64*1024*1024) /* max text size */ #ifndef DFLDSIZ -#define DFLDSIZ (16*1024*1024) /* initial data size limit */ +#define DFLDSIZ (128*1024*1024) /* initial data size limit */ #endif #ifndef MAXDSIZ -#define MAXDSIZ (256*1024*1024) /* max data size */ +#define MAXDSIZ (1*1024*1024*1024) /* max data size */ #endif #ifndef DFLSSIZ -#define DFLSSIZ (512*1024) /* initial stack size limit */ +#define DFLSSIZ (2*1024*1024) /* initial stack size limit */ #endif #ifndef MAXSSIZ -#define MAXSSIZ (8*1024*1024) /* max stack size */ +#define MAXSSIZ (32*1024*1024) /* max stack size */ #endif /* |