aboutsummaryrefslogtreecommitdiff
path: root/target-ppc
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-09-27 13:57:58 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-09-27 13:57:58 +0000
commita04e134ad1f4271bea2c7b7649b21e35ded91005 (patch)
treeef92adda2070c7ef15473d9a10926f867e221271 /target-ppc
parente3b9808535376bff99343c8a61726059a965198e (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-ppc')
-rw-r--r--target-ppc/cpu.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/target-ppc/cpu.h b/target-ppc/cpu.h
index f1df741e1e..e428f70f16 100644
--- a/target-ppc/cpu.h
+++ b/target-ppc/cpu.h
@@ -1146,4 +1146,9 @@ enum {
/*****************************************************************************/
+static inline target_ulong get_sp_from_cpustate(CPUPPCState *state)
+{
+ return state->gpr[1];
+}
+
#endif /* !defined (__CPU_PPC_H__) */