2
0

target_signal.h 489 B

12345678910111213141516171819202122232425
  1. #ifndef M68K_TARGET_SIGNAL_H
  2. #define M68K_TARGET_SIGNAL_H
  3. /* this struct defines a stack used during syscall handling */
  4. typedef struct target_sigaltstack {
  5. abi_ulong ss_sp;
  6. abi_long ss_flags;
  7. abi_ulong ss_size;
  8. } target_stack_t;
  9. /*
  10. * sigaltstack controls
  11. */
  12. #define TARGET_SS_ONSTACK 1
  13. #define TARGET_SS_DISABLE 2
  14. #define TARGET_MINSIGSTKSZ 2048
  15. #define TARGET_SIGSTKSZ 8192
  16. #include "../generic/signal.h"
  17. #define TARGET_ARCH_HAS_SETUP_FRAME
  18. #endif /* M68K_TARGET_SIGNAL_H */