Files
xemu/linux-user/aarch64/target_syscall.h
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
498 B
C
Raw Normal View History

#ifndef AARCH64_TARGET_SYSCALL_H
#define AARCH64_TARGET_SYSCALL_H
2013-09-03 20:12:21 +01:00
struct target_pt_regs {
uint64_t regs[31];
uint64_t sp;
uint64_t pc;
uint64_t pstate;
};
2022-03-23 19:57:18 +04:00
#if TARGET_BIG_ENDIAN
2018-01-11 13:25:31 +00:00
#define UNAME_MACHINE "aarch64_be"
#else
2013-09-03 20:12:21 +01:00
#define UNAME_MACHINE "aarch64"
2018-01-11 13:25:31 +00:00
#endif
2013-09-03 20:12:21 +01:00
#define UNAME_MINIMUM_RELEASE "3.8.0"
#define TARGET_CLONE_BACKWARDS
#define TARGET_MCL_CURRENT 1
#define TARGET_MCL_FUTURE 2
#define TARGET_MCL_ONFAULT 4
#endif /* AARCH64_TARGET_SYSCALL_H */