2016-06-29 16:09:50 +02:00
|
|
|
#ifndef CRIS_TARGET_SIGNAL_H
|
|
|
|
#define CRIS_TARGET_SIGNAL_H
|
2007-10-08 15:35:05 +02:00
|
|
|
|
|
|
|
/* this struct defines a stack used during syscall handling */
|
|
|
|
|
|
|
|
typedef struct target_sigaltstack {
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong ss_sp;
|
|
|
|
abi_ulong ss_size;
|
|
|
|
abi_long ss_flags;
|
2009-10-01 23:12:16 +02:00
|
|
|
} target_stack_t;
|
2007-10-08 15:35:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sigaltstack controls
|
|
|
|
*/
|
|
|
|
#define TARGET_SS_ONSTACK 1
|
|
|
|
#define TARGET_SS_DISABLE 2
|
|
|
|
|
|
|
|
#define TARGET_MINSIGSTKSZ 2048
|
|
|
|
#define TARGET_SIGSTKSZ 8192
|
|
|
|
|
2018-05-29 21:42:01 +02:00
|
|
|
#include "../generic/signal.h"
|
|
|
|
|
2018-04-24 21:26:35 +02:00
|
|
|
#define TARGET_ARCH_HAS_SETUP_FRAME
|
2016-06-29 16:09:50 +02:00
|
|
|
#endif /* CRIS_TARGET_SIGNAL_H */
|