Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/netbsd-1-5]: src/sys/arch/macppc/include Pull up revision 1.13 (requeste...
details: https://anonhg.NetBSD.org/src/rev/3d8706b39b1e
branches: netbsd-1-5
changeset: 490448:3d8706b39b1e
user: jhawk <jhawk%NetBSD.org@localhost>
date: Sun Dec 31 18:35:15 2000 +0000
description:
Pull up revision 1.13 (requested by mycroft):
Increase limits (max test size, datasize, default datasize, and
default stacksize) to match other ports. (Fixes a bunch of problems
running apps like Mozilla with the defaults.)
diffstat:
sys/arch/macppc/include/vmparam.h | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
diffs (33 lines):
diff -r 61caa53081dc -r 3d8706b39b1e sys/arch/macppc/include/vmparam.h
--- a/sys/arch/macppc/include/vmparam.h Sun Dec 31 18:25:35 2000 +0000
+++ b/sys/arch/macppc/include/vmparam.h Sun Dec 31 18:35:15 2000 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: vmparam.h,v 1.11 2000/02/11 19:25:16 thorpej Exp $ */
+/* $NetBSD: vmparam.h,v 1.11.4.1 2000/12/31 18:35:15 jhawk Exp $ */
/*-
* Copyright (C) 1995, 1996 Wolfgang Solfrank.
@@ -38,19 +38,19 @@
#define USRSTACK VM_MAXUSER_ADDRESS
#ifndef MAXTSIZ
-#define MAXTSIZ (16*1024*1024) /* max text size */
+#define MAXTSIZ (64*1024*1024) /* max text size */
#endif
#ifndef DFLDSIZ
-#define DFLDSIZ (32*1024*1024) /* default data size */
+#define DFLDSIZ (128*1024*1024) /* default data size */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (512*1024*1024) /* max data size */
+#define MAXDSIZ (1*1024*1024*1024) /* max data size */
#endif
#ifndef DFLSSIZ
-#define DFLSSIZ (1*1024*1024) /* default stack size */
+#define DFLSSIZ (2*1024*1024) /* default stack size */
#endif
#ifndef MAXSSIZ
Home |
Main Index |
Thread Index |
Old Index