From 9d6e94072b0556fda0de39520d0055e4170eedd2 Mon Sep 17 00:00:00 2001 From: thorpej Date: Tue, 19 Feb 2002 22:44:35 +0000 Subject: [PATCH] Bump the default data limit to 32M and the max data limit to 64M. These are the same values that the hp300 port uses (lesser hp300s have roughly the same memory constraints as "lesser" vaxen), and bumping them allows us to run a statically linked ELF groff(1). --- sys/arch/vax/include/vmparam.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/sys/arch/vax/include/vmparam.h b/sys/arch/vax/include/vmparam.h index fa385e8e42f2..973290e7dbba 100644 --- a/sys/arch/vax/include/vmparam.h +++ b/sys/arch/vax/include/vmparam.h @@ -1,4 +1,4 @@ -/* $NetBSD: vmparam.h,v 1.36 2001/11/15 18:06:18 soren Exp $ */ +/* $NetBSD: vmparam.h,v 1.37 2002/02/19 22:44:35 thorpej Exp $ */ /*- * Copyright (c) 1990 The Regents of the University of California. @@ -71,18 +71,18 @@ #ifndef MAXTSIZ #define MAXTSIZ (8*1024*1024) /* max text size */ #endif -#ifndef MAXDSIZ -#define MAXDSIZ (24*1024*1024) /* max data size */ -#endif -#ifndef MAXSSIZ -#define MAXSSIZ (8*1024*1024) /* max stack size */ -#endif #ifndef DFLDSIZ -#define DFLDSIZ (16*1024*1024) /* initial data size limit */ +#define DFLDSIZ (32*1024*1024) /* initial data size limit */ +#endif +#ifndef MAXDSIZ +#define MAXDSIZ (64*1024*1024) /* max data size */ #endif #ifndef DFLSSIZ #define DFLSSIZ (512*1024) /* initial stack size limit */ #endif +#ifndef MAXSSIZ +#define MAXSSIZ (8*1024*1024) /* max stack size */ +#endif /* * All mmap()'ed data will be mapped above MAXDSIZ. This means that