summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSzabolcs Nagy <nsz@port70.net>2019-05-09 20:20:24 +0000
committerRich Felker <dalias@aerifal.cx>2019-07-01 14:17:02 -0400
commitb574de5bf3baeb9f1a54b4c05660830e36e5fca2 (patch)
tree7f760ea76d42979ea8dd6d5da1830f04e6137905
parent47bc7f0afee104ce543a65795d786731c5da8f97 (diff)
downloadmusl-b574de5bf3baeb9f1a54b4c05660830e36e5fca2.tar.gz
mips64: fix syscall numbers of io_pgetevents and rseq
the numbers added in commit d149e69c02eb558114f20ea718810e95538a3b2f add io_pgetevents and rseq syscall numbers from linux v4.18 were incorrect.
-rw-r--r--arch/mips64/bits/syscall.h.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips64/bits/syscall.h.in b/arch/mips64/bits/syscall.h.in
index f814aa48..9eebbb6a 100644
--- a/arch/mips64/bits/syscall.h.in
+++ b/arch/mips64/bits/syscall.h.in
@@ -324,6 +324,6 @@
#define __NR_pkey_alloc 5324
#define __NR_pkey_free 5325
#define __NR_statx 5326
-#define __NR_rseq 4327
-#define __NR_io_pgetevents 4328
+#define __NR_rseq 5327
+#define __NR_io_pgetevents 5328