summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1999-04-20 19:45:17 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1999-04-20 19:45:17 +0000
commita0f3fa83f0a95debd343df5f1dc89bdedbd35fdd (patch)
tree7838117f4066744b2a0f629576b58eb3aad0f4c5 /sys
parent488d96744e4e33350af86e3924b65b7d6f332692 (diff)
define UADDR; change alignment to 8 bytes
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/hppa/include/param.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/param.h b/sys/arch/hppa/include/param.h
index 8a0344e2700..518d7aa8df9 100644
--- a/sys/arch/hppa/include/param.h
+++ b/sys/arch/hppa/include/param.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: param.h,v 1.2 1998/10/30 19:28:13 mickey Exp $ */
+/* $OpenBSD: param.h,v 1.3 1999/04/20 19:45:16 mickey Exp $ */
/*
* Copyright (c) 1988-1994, The University of Utah and
@@ -41,7 +41,7 @@
* data types (int, long, ...). The result is u_int and must be cast to
* any desired pointer type.
*/
-#define ALIGNBYTES 3
+#define ALIGNBYTES 7
#define ALIGN(p) (((u_long)(p) + ALIGNBYTES) &~ ALIGNBYTES)
#define NBPG 4096 /* bytes/page */
@@ -69,6 +69,7 @@
#define SSIZE (1) /* initial stack size/NBPG */
#define SINCR (1) /* increment of stack/NBPG */
+#define UADDR 0xC1000000 /* u-area lives here */
#define UPAGES (2) /* pages of u-area */
#define USPACE (UPAGES * NBPG) /* pages for user struct */