2016-06-29 16:09:50 +02:00
|
|
|
#ifndef PPC_TARGET_SIGNAL_H
|
|
|
|
#define PPC_TARGET_SIGNAL_H
|
2007-09-27 15:57:58 +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;
|
2007-12-10 09:24:59 +01:00
|
|
|
int ss_flags;
|
2007-10-14 18:27:31 +02:00
|
|
|
abi_ulong ss_size;
|
2009-10-01 23:12:16 +02:00
|
|
|
} target_stack_t;
|
2007-09-27 15:57:58 +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:34 +02:00
|
|
|
#if !defined(TARGET_PPC64)
|
2018-04-24 21:26:35 +02:00
|
|
|
#define TARGET_ARCH_HAS_SETUP_FRAME
|
2018-04-24 21:26:34 +02:00
|
|
|
#endif
|
2016-06-29 16:09:50 +02:00
|
|
|
#endif /* PPC_TARGET_SIGNAL_H */
|