mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-09 08:15:46 +00:00
alpha-linux-user: Fix sigaltstack structure definition
Signed-off-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
This commit is contained in:
parent
3d21d29c32
commit
b7fb231013
@ -6,9 +6,10 @@
|
|||||||
/* this struct defines a stack used during syscall handling */
|
/* this struct defines a stack used during syscall handling */
|
||||||
|
|
||||||
typedef struct target_sigaltstack {
|
typedef struct target_sigaltstack {
|
||||||
abi_ulong ss_sp;
|
abi_ulong ss_sp;
|
||||||
abi_long ss_flags;
|
int32_t ss_flags;
|
||||||
abi_ulong ss_size;
|
int32_t dummy;
|
||||||
|
abi_ulong ss_size;
|
||||||
} target_stack_t;
|
} target_stack_t;
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user