Source-Changes-HG archive

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

[src/trunk]: src/sys/arch/amd64/include Bump text size to 128MB to make sure ...



details:   https://anonhg.NetBSD.org/src/rev/d38365870780
branches:  trunk
changeset: 771542:d38365870780
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Nov 24 17:08:07 2011 +0000

description:
Bump text size to 128MB to make sure that gcc46 fits. It exceeded 64MB by
a tiny bit.

diffstat:

 sys/arch/amd64/include/vmparam.h |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r 006a7e70a360 -r d38365870780 sys/arch/amd64/include/vmparam.h
--- a/sys/arch/amd64/include/vmparam.h  Thu Nov 24 16:48:50 2011 +0000
+++ b/sys/arch/amd64/include/vmparam.h  Thu Nov 24 17:08:07 2011 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.27 2011/03/04 13:24:19 christos Exp $    */
+/*     $NetBSD: vmparam.h,v 1.28 2011/11/24 17:08:07 christos Exp $    */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -72,7 +72,7 @@
 /*
  * Virtual memory related constants, all in bytes
  */
-#define        MAXTSIZ         (64*1024*1024)          /* max text size */
+#define        MAXTSIZ         (128*1024*1024)         /* max text size */
 #ifndef DFLDSIZ
 #define        DFLDSIZ         (256*1024*1024)         /* initial data size limit */
 #endif
@@ -90,7 +90,7 @@
  * 32bit memory related constants.
  */
 
-#define MAXTSIZ32      (64*1024*1024)
+#define MAXTSIZ32      (128*1024*1024)
 #ifndef DFLDSIZ32
 #define        DFLDSIZ32       (256*1024*1024)         /* initial data size limit */
 #endif



Home | Main Index | Thread Index | Old Index