2016-06-29 22:09:50 +08:00
|
|
|
#ifndef SPARC_TARGET_SIGNAL_H
|
|
|
|
#define SPARC_TARGET_SIGNAL_H
|
2007-09-27 21:57:58 +08:00
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
|
|
|
|
/* this struct defines a stack used during syscall handling */
|
|
|
|
|
|
|
|
typedef struct target_sigaltstack {
|
2007-10-15 00:27:31 +08:00
|
|
|
abi_ulong ss_sp;
|
|
|
|
abi_long ss_flags;
|
|
|
|
abi_ulong ss_size;
|
2009-10-02 05:12:16 +08:00
|
|
|
} target_stack_t;
|
2007-09-27 21:57:58 +08:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* sigaltstack controls
|
|
|
|
*/
|
|
|
|
#define TARGET_SS_ONSTACK 1
|
|
|
|
#define TARGET_SS_DISABLE 2
|
|
|
|
|
|
|
|
#define TARGET_MINSIGSTKSZ 4096
|
|
|
|
#define TARGET_SIGSTKSZ 16384
|
|
|
|
|
2007-09-28 00:44:32 +08:00
|
|
|
#ifndef UREG_I6
|
|
|
|
#define UREG_I6 6
|
|
|
|
#endif
|
|
|
|
#ifndef UREG_FP
|
|
|
|
#define UREG_FP UREG_I6
|
|
|
|
#endif
|
|
|
|
|
2007-10-15 00:27:31 +08:00
|
|
|
static inline abi_ulong get_sp_from_cpustate(CPUSPARCState *state)
|
2007-09-28 00:44:32 +08:00
|
|
|
{
|
|
|
|
return state->regwptr[UREG_FP];
|
|
|
|
}
|
|
|
|
|
2016-05-13 01:47:34 +08:00
|
|
|
|
2016-06-29 22:09:50 +08:00
|
|
|
#endif /* SPARC_TARGET_SIGNAL_H */
|