diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-10-14 18:40:07 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-10-14 18:40:07 +0000 |
commit | e420b5c891e3a91d101c827f368a7683dc34a1f6 (patch) | |
tree | fef8bd2399f383f7785041769eaa41e30e0f5ea7 /sys/arch/sh/include | |
parent | 96ee2c0ce14e00c10965754a14657eea70d67843 (diff) |
ps uses KERNBASE so define it to the correct value (pointed out by miod)
Diffstat (limited to 'sys/arch/sh/include')
-rw-r--r-- | sys/arch/sh/include/vmparam.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/arch/sh/include/vmparam.h b/sys/arch/sh/include/vmparam.h index c9bf886ac4d..deeab7b3af8 100644 --- a/sys/arch/sh/include/vmparam.h +++ b/sys/arch/sh/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.1 2006/10/06 21:02:55 miod Exp $ */ +/* $OpenBSD: vmparam.h,v 1.2 2006/10/14 18:40:06 drahn Exp $ */ /* $NetBSD: vmparam.h,v 1.17 2006/03/04 01:55:03 uwe Exp $ */ /*- @@ -50,6 +50,7 @@ /* top of stack */ #define USRSTACK VM_MAXUSER_ADDRESS +#define KERNBASE VM_MIN_KERNEL_ADDRESS /* Virtual memory resoruce limit. */ #define MAXTSIZ (64 * 1024 * 1024) /* max text size */ |