]> git.proxmox.com Git - qemu.git/blobdiff - linux-user/ppc/target_signal.h
Open 1.0 development branch.
[qemu.git] / linux-user / ppc / target_signal.h
index 80ad21187f7a0df74877988cd8dbe9a2c9ef10eb..a93b5cf1df3849497ccebd25cc4e6f66939868f7 100644 (file)
@@ -6,9 +6,9 @@
 /* this struct defines a stack used during syscall handling */
 
 typedef struct target_sigaltstack {
-       target_ulong ss_sp;
-       target_long ss_flags;
-       target_ulong ss_size;
+       abi_ulong ss_sp;
+       int ss_flags;
+       abi_ulong ss_size;
 } target_stack_t;
 
 
@@ -21,7 +21,7 @@ typedef struct target_sigaltstack {
 #define TARGET_MINSIGSTKSZ    2048
 #define TARGET_SIGSTKSZ       8192
 
-static inline target_ulong get_sp_from_cpustate(CPUPPCState *state)
+static inline abi_ulong get_sp_from_cpustate(CPUPPCState *state)
 {
     return state->gpr[1];
 }