mirror of https://gitee.com/openkylin/qemu.git
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 */
|
||||
|
||||
typedef struct target_sigaltstack {
|
||||
abi_ulong ss_sp;
|
||||
abi_long ss_flags;
|
||||
abi_ulong ss_size;
|
||||
abi_ulong ss_sp;
|
||||
int32_t ss_flags;
|
||||
int32_t dummy;
|
||||
abi_ulong ss_size;
|
||||
} target_stack_t;
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue