Statistics
| Branch: | Revision:

root / linux-user / ppc64 / target_signal.h @ 89fc88da

History | View | Annotate | Download (549 Bytes)

1 a04e134a ths
#ifndef TARGET_SIGNAL_H
2 a04e134a ths
#define TARGET_SIGNAL_H
3 a04e134a ths
4 a04e134a ths
#include "cpu.h"
5 a04e134a ths
6 a04e134a ths
/* this struct defines a stack used during syscall handling */
7 a04e134a ths
8 a04e134a ths
typedef struct target_sigaltstack {
9 a04e134a ths
        target_ulong ss_sp;
10 a04e134a ths
        target_long ss_flags;
11 a04e134a ths
        target_ulong ss_size;
12 a04e134a ths
} target_stack_t;
13 a04e134a ths
14 a04e134a ths
15 a04e134a ths
/*
16 a04e134a ths
 * sigaltstack controls
17 a04e134a ths
 */
18 a04e134a ths
#define TARGET_SS_ONSTACK     1
19 a04e134a ths
#define TARGET_SS_DISABLE     2
20 a04e134a ths
21 a04e134a ths
#define TARGET_MINSIGSTKSZ    2048
22 a04e134a ths
#define TARGET_SIGSTKSZ       8192
23 a04e134a ths
24 df0d3736 ths
static inline target_ulong get_sp_from_cpustate(CPUPPCState *state)
25 df0d3736 ths
{
26 df0d3736 ths
    return state->gpr[1];
27 df0d3736 ths
}
28 df0d3736 ths
29 a04e134a ths
#endif /* TARGET_SIGNAL_H */