summaryrefslogtreecommitdiff
path: root/sys/arch/hppa
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>2004-10-26 20:19:13 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>2004-10-26 20:19:13 +0000
commit6bf1b9477b653b6793289733ed26b1d9c475161c (patch)
tree6c5678c039532e9ee36ca4cc667da66cda1b9c44 /sys/arch/hppa
parent983111603a090dbf6d7ac878ff600afb45536111 (diff)
better higher limits
Diffstat (limited to 'sys/arch/hppa')
-rw-r--r--sys/arch/hppa/include/vmparam.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/arch/hppa/include/vmparam.h b/sys/arch/hppa/include/vmparam.h
index 27c3e324820..52414cf1d79 100644
--- a/sys/arch/hppa/include/vmparam.h
+++ b/sys/arch/hppa/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.29 2004/10/12 15:16:25 mickey Exp $ */
+/* $OpenBSD: vmparam.h,v 1.30 2004/10/26 20:19:12 mickey Exp $ */
/*
* Copyright (c) 1988-1994, The University of Utah and
@@ -34,26 +34,26 @@
* is the bottm (start) of the user stack.
*/
#define USRTEXT PAGE_SIZE /* Start of user .text */
-#define USRSTACK 0x68FF3000 /* Start of user stack */
+#define USRSTACK 0x78000000UL /* Start of user stack */
#define SYSCALLGATE 0xC0000000 /* syscall gateway page */
/*
* Virtual memory related constants, all in bytes
*/
#ifndef MAXTSIZ
-#define MAXTSIZ (64*1024*1024) /* max text size */
+#define MAXTSIZ (512*1024*1024UL) /* max text size */
#endif
#ifndef DFLDSIZ
#define DFLDSIZ (16*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (1*1024*1024*1024) /* max data size */
+#define MAXDSIZ (1*1024*1024*1024UL) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (2*1024*1024) /* initial stack size limit */
#endif
#ifndef MAXSSIZ
-#define MAXSSIZ (32*1024*1024) /* max stack size */
+#define MAXSSIZ (128*1024*1024UL) /* max stack size */
#endif
#ifndef USRIOSIZE