]> git.proxmox.com Git - mirror_qemu.git/blame - linux-user/riscv/target_signal.h
Merge remote-tracking branch 'remotes/XanClic/tags/pull-block-2021-11-02' into staging
[mirror_qemu.git] / linux-user / riscv / target_signal.h
CommitLineData
43e0c351
MA
1#ifndef RISCV_TARGET_SIGNAL_H
2#define RISCV_TARGET_SIGNAL_H
47ae93cd 3
47ae93cd
MC
4typedef 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
3c62b5d2
RH
18#define TARGET_ARCH_HAS_SIGTRAMP_PAGE 1
19
43e0c351 20#endif /* RISCV_TARGET_SIGNAL_H */