mirror of
https://github.com/qemu/qemu.git
synced 2025-08-06 03:44:14 +00:00

The ELF V2 ABI for PPC64 defines MINSIGSTKSZ as 4096 bytes whereas it was 2048 previously. Signed-off-by: Tom Musta <tommusta@gmail.com> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
12 lines
273 B
C
12 lines
273 B
C
struct target_pt_regs {
|
|
uint64_t regs[31];
|
|
uint64_t sp;
|
|
uint64_t pc;
|
|
uint64_t pstate;
|
|
};
|
|
|
|
#define UNAME_MACHINE "aarch64"
|
|
#define UNAME_MINIMUM_RELEASE "3.8.0"
|
|
#define TARGET_CLONE_BACKWARDS
|
|
#define TARGET_MINSIGSTKSZ 2048
|