2
0

target_signal.h 368 B

123456789101112131415161718
  1. #ifndef RISCV_TARGET_SIGNAL_H
  2. #define RISCV_TARGET_SIGNAL_H
  3. typedef struct target_sigaltstack {
  4. abi_ulong ss_sp;
  5. abi_int ss_flags;
  6. abi_ulong ss_size;
  7. } target_stack_t;
  8. #define TARGET_SS_ONSTACK 1
  9. #define TARGET_SS_DISABLE 2
  10. #define TARGET_MINSIGSTKSZ 2048
  11. #define TARGET_SIGSTKSZ 8192
  12. #include "../generic/signal.h"
  13. #endif /* RISCV_TARGET_SIGNAL_H */