]>
Commit | Line | Data |
---|---|---|
47ae93cd MC |
1 | #ifndef TARGET_SIGNAL_H |
2 | #define TARGET_SIGNAL_H | |
3 | ||
47ae93cd MC |
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 | #define TARGET_SS_ONSTACK 1 | |
11 | #define TARGET_SS_DISABLE 2 | |
12 | ||
13 | #define TARGET_MINSIGSTKSZ 2048 | |
14 | #define TARGET_SIGSTKSZ 8192 | |
15 | ||
e5171a9e LV |
16 | #include "../generic/signal.h" |
17 | ||
47ae93cd | 18 | #endif /* TARGET_SIGNAL_H */ |