diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-27 16:44:32 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-27 16:44:32 +0000 |
commit | 198a74de4c61d3486c365f09361c605daab90af5 (patch) | |
tree | b518f4236b5689bc1c4b3f405e3019901aa34a8c /linux-user/alpha/target_signal.h | |
parent | a04e134ad1f4271bea2c7b7649b21e35ded91005 (diff) | |
download | qemu-198a74de4c61d3486c365f09361c605daab90af5.zip |
Move get_sp_from_cpustate from cpu.h to target_signal.h.
Enable sigaltstack processing for more architectures.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3253 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/alpha/target_signal.h')
-rw-r--r-- | linux-user/alpha/target_signal.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/linux-user/alpha/target_signal.h b/linux-user/alpha/target_signal.h index bf54ac71d8..7618c3e83b 100644 --- a/linux-user/alpha/target_signal.h +++ b/linux-user/alpha/target_signal.h @@ -21,4 +21,9 @@ typedef struct target_sigaltstack { #define TARGET_MINSIGSTKSZ 4096 #define TARGET_SIGSTKSZ 16384 +static inline target_ulong get_sp_from_cpustate(CPUAlphaState *state) +{ + return state->ir[IR_SP]; +} + #endif /* TARGET_SIGNAL_H */ |