| 1 | #ifndef AARCH64_TARGET_SYSCALL_H |
| 2 | #define AARCH64_TARGET_SYSCALL_H |
| 3 | |
| 4 | #if TARGET_BIG_ENDIAN |
| 5 | #define UNAME_MACHINE "aarch64_be" |
| 6 | #else |
| 7 | #define UNAME_MACHINE "aarch64" |
| 8 | #endif |
| 9 | #define UNAME_MINIMUM_RELEASE "3.8.0" |
| 10 | #define TARGET_CLONE_BACKWARDS |
| 11 | #define TARGET_MCL_CURRENT 1 |
| 12 | #define TARGET_MCL_FUTURE 2 |
| 13 | #define TARGET_MCL_ONFAULT 4 |
| 14 | |
| 15 | #endif /* AARCH64_TARGET_SYSCALL_H */ |