diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2015-11-01 20:10:01 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2015-11-01 20:10:01 +0000 |
commit | 23f0f552136804a1b538bc98b8a2a631bb2ce7bf (patch) | |
tree | 426b915d9330bab76bc3eb15b98df51952748c2e /sys/arch/hppa64/include | |
parent | 981d989d171d9fe6519a3ea1e27d9c09b5e48278 (diff) |
Remove the definition of USRTEXT. It has no relevance outside of the non-PIE
a.out world.
ok deraadt@ kettenis@
Diffstat (limited to 'sys/arch/hppa64/include')
-rw-r--r-- | sys/arch/hppa64/include/vmparam.h | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/sys/arch/hppa64/include/vmparam.h b/sys/arch/hppa64/include/vmparam.h index 519eac70176..a320e1b8de6 100644 --- a/sys/arch/hppa64/include/vmparam.h +++ b/sys/arch/hppa64/include/vmparam.h @@ -1,4 +1,4 @@ -/* $OpenBSD: vmparam.h,v 1.14 2015/02/10 10:02:55 tedu Exp $ */ +/* $OpenBSD: vmparam.h,v 1.15 2015/11/01 20:09:59 miod Exp $ */ /* * Copyright (c) 1988-1994, The University of Utah and @@ -29,13 +29,8 @@ /* * Machine dependent constants for HP PA */ -/* - * USRTEXT is the start of the user text/data space, while USRSTACK - * is the bottm (start) of the user stack. - */ -#define USRTEXT PAGE_SIZE /* Start of user .text */ -#define USRSTACK 0x68FF3000 /* Start of user stack */ -#define SYSCALLGATE 0xC0000000 /* syscall gateway page */ +#define USRSTACK 0x68FF3000 /* start (bottom) of user stack */ +#define SYSCALLGATE 0xC0000000 /* syscall gateway page */ /* * Virtual memory related constants, all in bytes |