diff options
author | Haibo Xu <haibo.xu@arm.com> | 2020-03-20 08:45:07 +0000 |
---|---|---|
committer | Haibo Xu <haibo.xu@arm.com> | 2020-03-31 13:39:38 +0800 |
commit | 8ce5b569714351f9f2f7fc48b0ff0bebbdb018ee (patch) | |
tree | de4b412b806df5b1e7730b2d75074b5c404f1cd9 /test/syscalls/linux/mlock.cc | |
parent | 32a133537e61bbceb6a0a16c95815495d8f17a35 (diff) |
Cleanup for syscall tests on arm64.
Signed-off-by: Haibo Xu <haibo.xu@arm.com>
Change-Id: I8008c0375fc7e23225a21026f359e78e691729e5
Diffstat (limited to 'test/syscalls/linux/mlock.cc')
-rw-r--r-- | test/syscalls/linux/mlock.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/syscalls/linux/mlock.cc b/test/syscalls/linux/mlock.cc index 367a90fe1..78ac96bed 100644 --- a/test/syscalls/linux/mlock.cc +++ b/test/syscalls/linux/mlock.cc @@ -199,8 +199,10 @@ TEST(MunlockallTest, Basic) { } #ifndef SYS_mlock2 -#ifdef __x86_64__ +#if defined(__x86_64__) #define SYS_mlock2 325 +#elif defined(__aarch64__) +#define SYS_mlock2 284 #endif #endif |