Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/i386/include - Bump default data size from 128M to ...



details:   https://anonhg.NetBSD.org/src/rev/d5fc48f58853
branches:  trunk
changeset: 584485:d5fc48f58853
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Sep 20 16:38:58 2005 +0000

description:
- Bump default data size from 128M to 256M, allows the java interpreter to
  start up without unlimit.
- Bump max data size from 2G to 3G. The actual space we are allowed to allocate
  is somewhere between 2G and 3G, so trying to allocate above that will fail.
- Bump max stack size from 32M to 64M.

Approved by fvdl

diffstat:

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

diffs (29 lines):

diff -r 4edaa5f4b198 -r d5fc48f58853 sys/arch/i386/include/vmparam.h
--- a/sys/arch/i386/include/vmparam.h   Tue Sep 20 15:48:17 2005 +0000
+++ b/sys/arch/i386/include/vmparam.h   Tue Sep 20 16:38:58 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.59 2005/07/17 05:29:54 christos Exp $    */
+/*     $NetBSD: vmparam.h,v 1.60 2005/09/20 16:38:58 christos Exp $    */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -64,16 +64,16 @@
  */
 #define        MAXTSIZ         (64*1024*1024)          /* max text size */
 #ifndef DFLDSIZ
-#define        DFLDSIZ         (128*1024*1024)         /* initial data size limit */
+#define        DFLDSIZ         (256*1024*1024)         /* initial data size limit */
 #endif
 #ifndef MAXDSIZ
-#define        MAXDSIZ         (2U*1024*1024*1024)     /* max data size */
+#define        MAXDSIZ         (3U*1024*1024*1024)     /* max data size */
 #endif
 #ifndef        DFLSSIZ
 #define        DFLSSIZ         (2*1024*1024)           /* initial stack size limit */
 #endif
 #ifndef        MAXSSIZ
-#define        MAXSSIZ         (32*1024*1024)          /* max stack size */
+#define        MAXSSIZ         (64*1024*1024)          /* max stack size */
 #endif
 
 /*



Home | Main Index | Thread Index | Old Index