Support for 32 bit ABI on 64 bit targets (only enabled Sparc64)
[qemu] / linux-user / ppc / target_signal.h
index 80ad211..defae80 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;
+       abi_long 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];
 }