Skip to content

Commit

Permalink
alpha-linux-user: Fix sigaltstack structure definition
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Henderson <rth@twiddle.net>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
  • Loading branch information
rth7680 authored and Riku Voipio committed Oct 12, 2012
1 parent 3d21d29 commit b7fb231
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions linux-user/alpha/target_signal.h
Expand Up @@ -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;


Expand Down

0 comments on commit b7fb231

Please sign in to comment.