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