Statistics
| Branch: | Revision:

root / linux-user / x86_64 / target_signal.h @ 99a0949b

History | View | Annotate | Download (526 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 992f48a0 blueswir1
        abi_ulong ss_sp;
10 992f48a0 blueswir1
        abi_long ss_flags;
11 992f48a0 blueswir1
        abi_ulong ss_size;
12 99a0949b malc
} a_target_stack;
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 992f48a0 blueswir1
static inline abi_ulong get_sp_from_cpustate(CPUX86State *state)
25 8bb1f9c5 j_mayer
{
26 8bb1f9c5 j_mayer
    return state->regs[R_ESP];
27 8bb1f9c5 j_mayer
}
28 8bb1f9c5 j_mayer
29 a04e134a ths
#endif /* TARGET_SIGNAL_H */