hw/mips/gt64xxx: Simplify ISD MemoryRegion read/write handlers
[qemu/ar7.git] / linux-user / riscv / target_signal.h
blobf113ba9a55f6994c5c155a11ddc0efeed4ac3931
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 #endif /* RISCV_TARGET_SIGNAL_H */