Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/vax/include Bump the default data limit to 32M and ...



details:   https://anonhg.NetBSD.org/src/rev/f2154f58c8c9
branches:  trunk
changeset: 522473:f2154f58c8c9
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Tue Feb 19 22:44:35 2002 +0000

description:
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).

diffstat:

 sys/arch/vax/include/vmparam.h |  16 ++++++++--------
 1 files changed, 8 insertions(+), 8 deletions(-)

diffs (35 lines):

diff -r 213afece835b -r f2154f58c8c9 sys/arch/vax/include/vmparam.h
--- a/sys/arch/vax/include/vmparam.h    Tue Feb 19 22:42:25 2002 +0000
+++ b/sys/arch/vax/include/vmparam.h    Tue Feb 19 22:44:35 2002 +0000
@@ -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 DFLDSIZ
+#define DFLDSIZ                (32*1024*1024)          /* initial data size limit */
+#endif
 #ifndef MAXDSIZ
-#define MAXDSIZ                (24*1024*1024)          /* max data size */
+#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
-#ifndef DFLDSIZ
-#define DFLDSIZ                (16*1024*1024)          /* initial data size limit */
-#endif
-#ifndef DFLSSIZ
-#define DFLSSIZ                (512*1024)              /* initial stack size limit */
-#endif
 
 /*
  * All mmap()'ed data will be mapped above MAXDSIZ. This means that



Home | Main Index | Thread Index | Old Index