Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/arm/include/arm32 Bump max text/data/stack sizes to...



details:   https://anonhg.NetBSD.org/src/rev/89667a633427
branches:  trunk
changeset: 785133:89667a633427
user:      matt <matt%NetBSD.org@localhost>
date:      Mon Feb 25 16:12:13 2013 +0000

description:
Bump max text/data/stack sizes to more reasonable values.

diffstat:

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

diffs (31 lines):

diff -r f8d47784bb8e -r 89667a633427 sys/arch/arm/include/arm32/vmparam.h
--- a/sys/arch/arm/include/arm32/vmparam.h      Mon Feb 25 02:02:41 2013 +0000
+++ b/sys/arch/arm/include/arm32/vmparam.h      Mon Feb 25 16:12:13 2013 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.27 2012/08/16 07:25:37 matt Exp $        */
+/*     $NetBSD: vmparam.h,v 1.28 2013/02/25 16:12:13 matt Exp $        */
 
 /*
  * Copyright (c) 2001, 2002 Wasabi Systems, Inc.
@@ -55,18 +55,18 @@
  * Note that MAXTSIZ can't be larger than 32M, otherwise the compiler
  * would have to be changed to not generate "bl" instructions.
  */
-#define        MAXTSIZ         (16*1024*1024)          /* max text size */
+#define        MAXTSIZ         (64*1024*1024)          /* max text size */
 #ifndef        DFLDSIZ
 #define        DFLDSIZ         (128*1024*1024)         /* initial data size limit */
 #endif
 #ifndef        MAXDSIZ
-#define        MAXDSIZ         (512*1024*1024)         /* max data size */
+#define        MAXDSIZ         (1024*1024*1024)        /* max data size */
 #endif
 #ifndef        DFLSSIZ
 #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
 
 /*



Home | Main Index | Thread Index | Old Index