2016-06-29 08:47:26 +00:00
|
|
|
#ifndef MIPS64_TARGET_SYSCALL_H
|
|
|
|
#define MIPS64_TARGET_SYSCALL_H
|
2007-09-30 01:58:33 +00:00
|
|
|
|
|
|
|
/* this struct defines the way the registers are stored on the
|
|
|
|
stack during a system call. */
|
|
|
|
|
|
|
|
struct target_pt_regs {
|
2013-02-10 18:30:50 +00:00
|
|
|
/* Saved main processor registers. */
|
|
|
|
target_ulong regs[32];
|
2007-09-30 01:58:33 +00:00
|
|
|
|
2013-02-10 18:30:50 +00:00
|
|
|
/* Saved special registers. */
|
|
|
|
target_ulong cp0_status;
|
|
|
|
target_ulong lo;
|
|
|
|
target_ulong hi;
|
|
|
|
target_ulong cp0_badvaddr;
|
|
|
|
target_ulong cp0_cause;
|
|
|
|
target_ulong cp0_epc;
|
2007-09-30 01:58:33 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define UNAME_MACHINE "mips64"
|
2014-02-19 12:50:41 +00:00
|
|
|
#define UNAME_MINIMUM_RELEASE "2.6.32"
|
2013-07-16 17:44:57 +00:00
|
|
|
|
|
|
|
#define TARGET_CLONE_BACKWARDS
|
2020-08-11 16:45:51 +00:00
|
|
|
#define TARGET_MCL_CURRENT 1
|
|
|
|
#define TARGET_MCL_FUTURE 2
|
|
|
|
#define TARGET_MCL_ONFAULT 4
|
2016-02-01 18:38:42 +00:00
|
|
|
|
2016-07-11 15:48:11 +00:00
|
|
|
#define TARGET_FORCE_SHMLBA
|
|
|
|
|
|
|
|
static inline abi_ulong target_shmlba(CPUMIPSState *env)
|
|
|
|
{
|
|
|
|
return 0x40000;
|
|
|
|
}
|
|
|
|
|
2016-06-29 08:47:26 +00:00
|
|
|
#endif /* MIPS64_TARGET_SYSCALL_H */
|