diff options
author | Szabolcs Nagy <nsz@port70.net> | 2018-04-28 16:36:40 +0000 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-06-19 13:25:50 -0400 |
commit | 90ac71d853d4ed9786ef8bed4f6ef77703d681a3 (patch) | |
tree | 1dd49709a9a2335d170a3eae26143e106cba576c /arch/powerpc | |
parent | a697a1c9a561e2dd3ae64bcbe2cfe286feaff97e (diff) | |
download | musl-90ac71d853d4ed9786ef8bed4f6ef77703d681a3.tar.gz musl-90ac71d853d4ed9786ef8bed4f6ef77703d681a3.tar.bz2 musl-90ac71d853d4ed9786ef8bed4f6ef77703d681a3.tar.xz musl-90ac71d853d4ed9786ef8bed4f6ef77703d681a3.zip |
powerpc: add pkey syscall numbers from linux v4.16
add pkey_mprotect, pkey_alloc, pkey_free syscall numbers,
new in linux commits 3350eb2ea127978319ced883523d828046af4045
and 9499ec1b5e82321829e1c1510bcc37edc20b6f38
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/bits/syscall.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/arch/powerpc/bits/syscall.h.in b/arch/powerpc/bits/syscall.h.in index 20833915..7ce94bbd 100644 --- a/arch/powerpc/bits/syscall.h.in +++ b/arch/powerpc/bits/syscall.h.in @@ -368,4 +368,7 @@ #define __NR_pwritev2 381 #define __NR_kexec_file_load 382 #define __NR_statx 383 +#define __NR_pkey_alloc 384 +#define __NR_pkey_free 385 +#define __NR_pkey_mprotect 386 |