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 make the max text size the same as th...



details:   https://anonhg.NetBSD.org/src/rev/8a1b6211b01e
branches:  trunk
changeset: 946416:8a1b6211b01e
user:      christos <christos%NetBSD.org@localhost>
date:      Thu Nov 26 20:50:45 2020 +0000

description:
make the max text size the same as the max data size

diffstat:

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

diffs (18 lines):

diff -r 76aedc5cc2b0 -r 8a1b6211b01e sys/arch/amd64/include/vmparam.h
--- a/sys/arch/amd64/include/vmparam.h  Thu Nov 26 12:56:34 2020 +0000
+++ b/sys/arch/amd64/include/vmparam.h  Thu Nov 26 20:50:45 2020 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: vmparam.h,v 1.53 2020/10/06 13:42:03 christos Exp $    */
+/*     $NetBSD: vmparam.h,v 1.54 2020/11/26 20:50:45 christos Exp $    */
 
 /*-
  * Copyright (c) 1990 The Regents of the University of California.
@@ -88,7 +88,7 @@
 /*
  * Virtual memory related constants, all in bytes
  */
-#define        MAXTSIZ         (256*1024*1024)         /* max text size */
+#define        MAXTSIZ         (8L*1024*1024*1024)     /* max text size */
 #ifndef DFLDSIZ
 #define        DFLDSIZ         (256*1024*1024)         /* initial data size limit */
 #endif



Home | Main Index | Thread Index | Old Index