summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarco Peereboom <marco@cvs.openbsd.org>2006-09-18 16:57:24 +0000
committerMarco Peereboom <marco@cvs.openbsd.org>2006-09-18 16:57:24 +0000
commit578672b098735924753d627a67b9a783ff758af7 (patch)
tree45d8421f4a257d9a86c62f1d024fb7095c096856
parent5b7b4f1f29e0aa2c9d6b3d13caf2439b179247ca (diff)
Extend the .text and .data segments to 64MB. This allows programs with
large .text segments, like xmame, to run. ok drahn
-rw-r--r--sys/arch/macppc/include/vmparam.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/macppc/include/vmparam.h b/sys/arch/macppc/include/vmparam.h
index ace57796122..485b6877706 100644
--- a/sys/arch/macppc/include/vmparam.h
+++ b/sys/arch/macppc/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.16 2005/12/17 07:31:26 miod Exp $ */
+/* $OpenBSD: vmparam.h,v 1.17 2006/09/18 16:57:23 marco Exp $ */
/* $NetBSD: vmparam.h,v 1.1 1996/09/30 16:34:38 ws Exp $ */
/*-
@@ -39,11 +39,11 @@
#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 (64*1024*1024) /* default data size */
#endif
#ifndef MAXDSIZ