Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/mips/include Modernise data and stack size limits.



details:   https://anonhg.NetBSD.org/src/rev/6a154d34b247
branches:  trunk
changeset: 512833:6a154d34b247
user:      simonb <simonb%NetBSD.org@localhost>
date:      Wed Jul 18 04:15:55 2001 +0000

description:
Modernise data and stack size limits.

diffstat:

 sys/arch/mips/include/vmparam.h |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (30 lines):

diff -r e901b684eff2 -r 6a154d34b247 sys/arch/mips/include/vmparam.h
--- a/sys/arch/mips/include/vmparam.h   Wed Jul 18 02:59:54 2001 +0000
+++ b/sys/arch/mips/include/vmparam.h   Wed Jul 18 04:15:55 2001 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.28 2001/05/01 02:19:17 thorpej Exp $     */
+/*     $NetBSD: vmparam.h,v 1.29 2001/07/18 04:15:55 simonb Exp $      */
 
 /*
  * Copyright (c) 1988 University of Utah.
@@ -75,16 +75,16 @@
  * Virtual memory related constants, all in bytes
  */
 #ifndef MAXTSIZ
-#define        MAXTSIZ         (24*1024*1024)          /* max text size */
+#define        MAXTSIZ         (64*1024*1024)          /* max text size */
 #endif
 #ifndef DFLDSIZ
-#define        DFLDSIZ         (32*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         (512*1024*1024)         /* max data size */
 #endif
 #ifndef        DFLSSIZ
-#define        DFLSSIZ         (1024*1024)             /* initial stack size limit */
+#define        DFLSSIZ         (2*1024*1024)           /* initial stack size limit */
 #endif
 #ifndef        MAXSSIZ
 #define        MAXSSIZ         (32*1024*1024)          /* max stack size */



Home | Main Index | Thread Index | Old Index