diff options
author | H. Peter Anvin <hpa@zytor.com> | 2001-10-22 03:37:07 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2001-10-22 03:37:07 +0000 |
commit | 1abaff844c2ff1651f493822c28836e418137b2a (patch) | |
tree | 103810bb4efb95c53bf3cc42489140a13c425c09 /sysdep | |
parent | c315f1e4bb97c797fb7b3e22e40e23384d17008d (diff) | |
download | lpsm-1abaff844c2ff1651f493822c28836e418137b2a.tar.gz lpsm-1abaff844c2ff1651f493822c28836e418137b2a.tar.xz lpsm-1abaff844c2ff1651f493822c28836e418137b2a.zip |
Change addresses on sparc to be more likely to work.
Diffstat (limited to 'sysdep')
-rw-r--r-- | sysdep/sparc32.h | 2 | ||||
-rw-r--r-- | sysdep/sparc64.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sysdep/sparc32.h b/sysdep/sparc32.h index 7db8f7a..9caec63 100644 --- a/sysdep/sparc32.h +++ b/sysdep/sparc32.h @@ -23,4 +23,4 @@ /* This is where we map the database file - must be constant */ /* FIX: I have no idea if this is actually legal... */ -#define ARENA_ADDRESS ((void *)0x70000000UL) +#define ARENA_ADDRESS ((void *)0x60000000UL) diff --git a/sysdep/sparc64.h b/sysdep/sparc64.h index 2b060f1..f780f0e 100644 --- a/sysdep/sparc64.h +++ b/sysdep/sparc64.h @@ -23,4 +23,4 @@ /* This is where we map the database file - must be constant */ /* FIX: I have no idea if this is actually legal... */ -#define ARENA_ADDRESS ((void *)0x7000000000000000UL) +#define ARENA_ADDRESS ((void *)0x6000000000000000UL) |