1 #ifndef MIPS64_TARGET_SYSCALL_H
2 #define MIPS64_TARGET_SYSCALL_H
4 /* this struct defines the way the registers are stored on the
5 stack during a system call. */
7 struct target_pt_regs
{
8 /* Saved main processor registers. */
11 /* Saved special registers. */
12 target_ulong cp0_status
;
15 target_ulong cp0_badvaddr
;
16 target_ulong cp0_cause
;
20 #define UNAME_MACHINE "mips64"
21 #define UNAME_MINIMUM_RELEASE "2.6.32"
23 #define TARGET_CLONE_BACKWARDS
24 #define TARGET_MCL_CURRENT 1
25 #define TARGET_MCL_FUTURE 2
26 #define TARGET_MCL_ONFAULT 4
28 #define TARGET_FORCE_SHMLBA
30 static inline abi_ulong
target_shmlba(CPUMIPSState
*env
)
35 #endif /* MIPS64_TARGET_SYSCALL_H */