]> Git Repo - qemu.git/blame - linux-user/riscv/target_signal.h
linux-user: Report error message on stderr, rather than stdout
[qemu.git] / linux-user / riscv / target_signal.h
CommitLineData
47ae93cd
MC
1#ifndef TARGET_SIGNAL_H
2#define TARGET_SIGNAL_H
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
47ae93cd 18#endif /* TARGET_SIGNAL_H */
This page took 0.049581 seconds and 4 git commands to generate.