diff options
| author | Richard Henderson <richard.henderson@linaro.org> | 2025-08-02 10:12:01 +1000 |
|---|---|---|
| committer | Richard Henderson <richard.henderson@linaro.org> | 2025-08-28 06:39:25 +1000 |
| commit | 05c84cf8df23b8dc81317ee0cea748e6199637f4 (patch) | |
| tree | 3c90af9fc7704c9943a7942fd37e393f216bf05e /linux-user/qemu.h | |
| parent | 5fc03d4e28258fdf6a926a59c6b5e1edc23e6d5d (diff) | |
| download | focaccia-qemu-05c84cf8df23b8dc81317ee0cea748e6199637f4.tar.gz focaccia-qemu-05c84cf8df23b8dc81317ee0cea748e6199637f4.zip | |
semihosting: Retrieve stack top from image_info
Remove the write-once field TaskState.stack_base, and use the same value from struct image_info. Reviewed-by: Peter Maydell <peter.maydell@linaro.org> 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 0b19fa43e6..b6621536b3 100644 --- a/linux-user/qemu.h +++ b/linux-user/qemu.h @@ -127,7 +127,6 @@ struct TaskState { abi_ulong heap_base; abi_ulong heap_limit; #endif - abi_ulong stack_base; int used; /* non zero if used */ struct image_info *info; struct linux_binprm *bprm; |