target/s390x: Use probe_access_flags in s390_probe_access
[qemu.git] / linux-user / riscv / target_signal.h
blob3e36fddc9dbb8f5b500031a7db863f66780ef30c
1 #ifndef RISCV_TARGET_SIGNAL_H
2 #define RISCV_TARGET_SIGNAL_H
4 typedef struct target_sigaltstack {
5 abi_ulong ss_sp;
6 abi_int ss_flags;
7 abi_ulong ss_size;
8 } target_stack_t;
10 #define TARGET_SS_ONSTACK 1
11 #define TARGET_SS_DISABLE 2
13 #define TARGET_MINSIGSTKSZ 2048
14 #define TARGET_SIGSTKSZ 8192
16 #include "../generic/signal.h"
18 #define TARGET_ARCH_HAS_SIGTRAMP_PAGE 1
20 #endif /* RISCV_TARGET_SIGNAL_H */