OSDN Git Service

linux-user/s390x: Remove restore_sigregs return value
[qmiga/qemu.git] / linux-user / s390x / target_signal.h
1 #ifndef S390X_TARGET_SIGNAL_H
2 #define S390X_TARGET_SIGNAL_H
3
4 typedef struct target_sigaltstack {
5     abi_ulong ss_sp;
6     abi_int ss_flags;
7     abi_ulong ss_size;
8 } target_stack_t;
9
10 /*
11  * sigaltstack controls
12  */
13 #define TARGET_SS_ONSTACK      1
14 #define TARGET_SS_DISABLE      2
15
16 #define TARGET_MINSIGSTKSZ     2048
17 #define TARGET_SIGSTKSZ        8192
18
19 #include "../generic/signal.h"
20
21 #define TARGET_ARCH_HAS_SETUP_FRAME
22 #endif /* S390X_TARGET_SIGNAL_H */