Module Name:    src
Committed By:   christos
Date:           Thu Nov 24 17:08:07 UTC 2011

Modified Files:
        src/sys/arch/amd64/include: vmparam.h

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


To generate a diff of this commit:
cvs rdiff -u -r1.27 -r1.28 src/sys/arch/amd64/include/vmparam.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/amd64/include/vmparam.h
diff -u src/sys/arch/amd64/include/vmparam.h:1.27 src/sys/arch/amd64/include/vmparam.h:1.28
--- src/sys/arch/amd64/include/vmparam.h:1.27	Fri Mar  4 08:24:19 2011
+++ src/sys/arch/amd64/include/vmparam.h	Thu Nov 24 12:08:07 2011
@@ -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

Reply via email to