diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2023-08-02 16:25:37 -0700 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2023-08-06 16:46:13 -0700 |
| commit | 0662a626a712dde5f8a91e1b078644332336e9fa (patch) | |
| tree | 3e8cc755bf74afb10dba660195e8214774e2f343 /linux-user/qemu.h | |
| parent | 2aea137a425a87b930a33590177b04368fd7cc12 (diff) | |
| download | focaccia-qemu-0662a626a712dde5f8a91e1b078644332336e9fa.tar.gz focaccia-qemu-0662a626a712dde5f8a91e1b078644332336e9fa.zip | |
linux-user: Properly set image_info.brk in flatload
The heap starts at "brk" not "start_brk". With this fixed, image_info.start_brk is unused and may be removed. Tested-by: Helge Deller <deller@gmx.de> Reviewed-by: Helge Deller <deller@gmx.de> Reviewed-by: Akihiko Odaki <akihiko.odaki@daynix.com> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'linux-user/qemu.h')
| -rw-r--r-- | linux-user/qemu.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/linux-user/qemu.h b/linux-user/qemu.h index 802794db63..2046a23037 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -29,7 +29,6 @@ struct image_info { abi_ulong end_code; abi_ulong start_data; abi_ulong end_data; - abi_ulong start_brk; abi_ulong brk; abi_ulong reserve_brk; abi_ulong start_mmap; |