|
From: Petar J. <pe...@so...> - 2019-09-27 08:19:32
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=5759d1debe87e55a2e4ab0154d933e41a565bc35 commit 5759d1debe87e55a2e4ab0154d933e41a565bc35 Author: Petar Jovanovic <mip...@gm...> Date: Thu Sep 26 15:21:34 2019 +0000 mips64: add missing syscall values for N32 Add missing syscall values for N32. This fixes build issue with MIPS64 N32. Diff: --- include/vki/vki-scnums-mips64-linux.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/vki/vki-scnums-mips64-linux.h b/include/vki/vki-scnums-mips64-linux.h index f85b333..dcb55f2 100644 --- a/include/vki/vki-scnums-mips64-linux.h +++ b/include/vki/vki-scnums-mips64-linux.h @@ -694,6 +694,14 @@ #define __NR_execveat (__NR_Linux + 320) #define __NR_userfaultfd (__NR_Linux + 321) #define __NR_membarrier (__NR_Linux + 322) +#define __NR_mlock2 (__NR_Linux + 323) +#define __NR_copy_file_range (__NR_Linux + 324) +#define __NR_preadv2 (__NR_Linux + 325) +#define __NR_pwritev2 (__NR_Linux + 326) +#define __NR_pkey_mprotect (__NR_Linux + 327) +#define __NR_pkey_alloc (__NR_Linux + 328) +#define __NR_pkey_free (__NR_Linux + 329) +#define __NR_statx (__NR_Linux + 330) #else #error unknown mips64 abi |