summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/include/vmparam.h
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1999-08-25 14:59:17 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1999-08-25 14:59:17 +0000
commit49e7f1690954c67141c3c1842da2c425596d4675 (patch)
treedad23a71f9e87a1969d0796070583c68226d6463 /sys/arch/hppa/include/vmparam.h
parenta75e48bcff8650169406e0908b196c1d2e5197f5 (diff)
n+1 approximation step for the user space constants
Diffstat (limited to 'sys/arch/hppa/include/vmparam.h')
-rw-r--r--sys/arch/hppa/include/vmparam.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/arch/hppa/include/vmparam.h b/sys/arch/hppa/include/vmparam.h
index 15d094db2a4..781b0b85cc7 100644
--- a/sys/arch/hppa/include/vmparam.h
+++ b/sys/arch/hppa/include/vmparam.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmparam.h,v 1.7 1999/05/12 15:52:28 mickey Exp $ */
+/* $OpenBSD: vmparam.h,v 1.8 1999/08/25 14:59:16 mickey Exp $ */
/*
* Copyright (c) 1988-1994, The University of Utah and
@@ -48,19 +48,19 @@
* Virtual memory related constants, all in bytes
*/
#ifndef MAXTSIZ
-#define MAXTSIZ (64*1024*1024) /* max text size */
+#define MAXTSIZ (0x40000000) /* max text size */
#endif
#ifndef DFLDSIZ
#define DFLDSIZ (16*1024*1024) /* initial data size limit */
#endif
#ifndef MAXDSIZ
-#define MAXDSIZ (64*1024*1024) /* max data size */
+#define MAXDSIZ (USRSTACK-MAXTSIZ) /* max data size */
#endif
#ifndef DFLSSIZ
#define DFLSSIZ (512*1024) /* initial stack size limit */
#endif
#ifndef MAXSSIZ
-#define MAXSSIZ MAXDSIZ /* max stack size */
+#define MAXSSIZ (UADDR-USRSTACK) /* max stack size */
#endif
/*