]> git.proxmox.com Git - qemu.git/blobdiff - linux-user/mips/target_signal.h
hw/pci-host/versatile.c: Provide property for forcing broken IRQ mapping
[qemu.git] / linux-user / mips / target_signal.h
index c94788497c703ac08b1fcebd780dee25830735e3..6e1dc8b6e61f5c8244a13acb1f6b0cab3a400949 100644 (file)
@@ -6,9 +6,9 @@
 /* this struct defines a stack used during syscall handling */
 
 typedef struct target_sigaltstack {
-       target_ulong ss_sp;
-       target_ulong ss_size;
-       target_long ss_flags;
+       abi_long ss_sp;
+       abi_ulong ss_size;
+       abi_long ss_flags;
 } target_stack_t;
 
 
@@ -21,4 +21,9 @@ typedef struct target_sigaltstack {
 #define TARGET_MINSIGSTKSZ    2048
 #define TARGET_SIGSTKSZ       8192
 
+static inline abi_ulong get_sp_from_cpustate(CPUMIPSState *state)
+{
+    return state->active_tc.gpr[29];
+}
+
 #endif /* TARGET_SIGNAL_H */