Module Name: src
Committed By: christos
Date: Thu Nov 26 20:50:45 UTC 2020
Modified Files:
src/sys/arch/amd64/include: vmparam.h
Log Message:
make the max text size the same as the max data size
To generate a diff of this commit:
cvs rdiff -u -r1.53 -r1.54 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.53 src/sys/arch/amd64/include/vmparam.h:1.54
--- src/sys/arch/amd64/include/vmparam.h:1.53 Tue Oct 6 09:42:03 2020
+++ src/sys/arch/amd64/include/vmparam.h Thu Nov 26 15:50:45 2020
@@ -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