From d6ea17a745f9d13158d1596ca5b72f7e89c71b52 Mon Sep 17 00:00:00 2001 From: kstailey Date: Wed, 4 Jun 1997 22:51:03 +0000 Subject: 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. --- sys/arch/i386/include/vmparam.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'sys/arch/i386/include') 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 /* -- cgit v1.2.3