diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-27 13:57:58 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-09-27 13:57:58 +0000 |
commit | a04e134ad1f4271bea2c7b7649b21e35ded91005 (patch) | |
tree | ef92adda2070c7ef15473d9a10926f867e221271 /target-alpha | |
parent | e3b9808535376bff99343c8a61726059a965198e (diff) |
linux-user sigaltstack() syscall, by Thayne Harbaugh.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3252 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-alpha')
-rw-r--r-- | target-alpha/cpu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/target-alpha/cpu.h b/target-alpha/cpu.h index 3f517e67b6..ef61d87483 100644 --- a/target-alpha/cpu.h +++ b/target-alpha/cpu.h @@ -397,4 +397,9 @@ void cpu_loop_exit (void); void pal_init (CPUState *env); void call_pal (CPUState *env, int palcode); +static inline target_ulong get_sp_from_cpustate(CPUAlphaState *state) +{ + return state->ir[IR_SP]; +} + #endif /* !defined (__CPU_ALPHA_H__) */ |