diff options
| author | Richard Henderson | 2016-12-15 18:38:11 +0100 |
|---|---|---|
| committer | Richard Henderson | 2017-01-23 03:14:10 +0100 |
| commit | 7c4ee5bcc82e643836a5f32db85887d2475288f7 (patch) | |
| tree | 4067c035d83da99b7f013d8079b6c2d30b4c4bf8 /linux-user/qemu.h | |
| parent | Revert "Remove remainders of HPPA backend" (diff) | |
| download | qemu-7c4ee5bcc82e643836a5f32db85887d2475288f7.tar.gz qemu-7c4ee5bcc82e643836a5f32db85887d2475288f7.tar.xz qemu-7c4ee5bcc82e643836a5f32db85887d2475288f7.zip | |
linux-user: Support stack-grows-up in elfload.c
HPPA is a (the) stack-grows-up target, and supporting that requires
rearranging how we compute addresses while laying out the initial
program stack. In addition, hppa32 requires 64-byte stack alignment
so parameterize that as well.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'linux-user/qemu.h')
| -rw-r--r-- | linux-user/qemu.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index da73a01106..4edd7d0c08 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -48,6 +48,9 @@ struct image_info { abi_ulong auxv_len; abi_ulong arg_start; abi_ulong arg_end; + abi_ulong arg_strings; + abi_ulong env_strings; + abi_ulong file_string; uint32_t elf_flags; int personality; #ifdef CONFIG_USE_FDPIC |
