diff options
| author | Szabolcs Nagy <nsz@port70.net> | 2021-03-07 19:21:34 +0000 | 
|---|---|---|
| committer | Rich Felker <dalias@aerifal.cx> | 2022-03-08 17:19:36 -0500 | 
| commit | b21f3ded780cc8fd8e510c99aeaf4a453d8c8a22 (patch) | |
| tree | 48578c4b9960be553cb11cb127572bb87b0ef88d | |
| parent | 3aba2150d0efc80df30d7fc6c22d6041e14d445e (diff) | |
| download | musl-b21f3ded780cc8fd8e510c99aeaf4a453d8c8a22.tar.gz | |
bits/syscall.h: add epoll_pwait2 from linux v5.11
see
  linux commit b0a0c2615f6f199a656ed8549d7dce625d77aa77
  epoll: wire up syscall epoll_pwait2
  linux commit 58169a52ebc9a733aeb5bea857bc5daa71a301bb
  epoll: add syscall epoll_pwait2
epoll_wait with struct timespec timeout instead of int. no time32 variant.
| -rw-r--r-- | arch/aarch64/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/arm/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/i386/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/m68k/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/microblaze/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/mips/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/mips64/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/mipsn32/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/or1k/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/powerpc/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/powerpc64/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/riscv64/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/s390x/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/sh/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/x32/bits/syscall.h.in | 1 | ||||
| -rw-r--r-- | arch/x86_64/bits/syscall.h.in | 1 | 
16 files changed, 16 insertions, 0 deletions
diff --git a/arch/aarch64/bits/syscall.h.in b/arch/aarch64/bits/syscall.h.in index 1ad467c0..e955da4d 100644 --- a/arch/aarch64/bits/syscall.h.in +++ b/arch/aarch64/bits/syscall.h.in @@ -294,4 +294,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/arm/bits/syscall.h.in b/arch/arm/bits/syscall.h.in index cf9e3411..2a55d4db 100644 --- a/arch/arm/bits/syscall.h.in +++ b/arch/arm/bits/syscall.h.in @@ -394,6 +394,7 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441  #define __ARM_NR_breakpoint	0x0f0001  #define __ARM_NR_cacheflush	0x0f0002 diff --git a/arch/i386/bits/syscall.h.in b/arch/i386/bits/syscall.h.in index 5d1c4d7a..f900db2e 100644 --- a/arch/i386/bits/syscall.h.in +++ b/arch/i386/bits/syscall.h.in @@ -431,4 +431,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/m68k/bits/syscall.h.in b/arch/m68k/bits/syscall.h.in index 6794b1a0..e064b445 100644 --- a/arch/m68k/bits/syscall.h.in +++ b/arch/m68k/bits/syscall.h.in @@ -411,3 +411,4 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/microblaze/bits/syscall.h.in b/arch/microblaze/bits/syscall.h.in index 7f71df3b..86fe8271 100644 --- a/arch/microblaze/bits/syscall.h.in +++ b/arch/microblaze/bits/syscall.h.in @@ -432,4 +432,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/mips/bits/syscall.h.in b/arch/mips/bits/syscall.h.in index d54845b2..83c9655d 100644 --- a/arch/mips/bits/syscall.h.in +++ b/arch/mips/bits/syscall.h.in @@ -413,4 +413,5 @@  #define __NR_pidfd_getfd	4438  #define __NR_faccessat2		4439  #define __NR_process_madvise	4440 +#define __NR_epoll_pwait2	4441 diff --git a/arch/mips64/bits/syscall.h.in b/arch/mips64/bits/syscall.h.in index 920b4358..1be9f3e1 100644 --- a/arch/mips64/bits/syscall.h.in +++ b/arch/mips64/bits/syscall.h.in @@ -343,4 +343,5 @@  #define __NR_pidfd_getfd	5438  #define __NR_faccessat2		5439  #define __NR_process_madvise	5440 +#define __NR_epoll_pwait2	5441 diff --git a/arch/mipsn32/bits/syscall.h.in b/arch/mipsn32/bits/syscall.h.in index e6dad688..1bd7aeb2 100644 --- a/arch/mipsn32/bits/syscall.h.in +++ b/arch/mipsn32/bits/syscall.h.in @@ -367,4 +367,5 @@  #define __NR_pidfd_getfd	6438  #define __NR_faccessat2		6439  #define __NR_process_madvise	6440 +#define __NR_epoll_pwait2	6441 diff --git a/arch/or1k/bits/syscall.h.in b/arch/or1k/bits/syscall.h.in index 463ee901..499aa832 100644 --- a/arch/or1k/bits/syscall.h.in +++ b/arch/or1k/bits/syscall.h.in @@ -316,4 +316,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/powerpc/bits/syscall.h.in b/arch/powerpc/bits/syscall.h.in index db4d0ca4..7f7d5a11 100644 --- a/arch/powerpc/bits/syscall.h.in +++ b/arch/powerpc/bits/syscall.h.in @@ -420,4 +420,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/powerpc64/bits/syscall.h.in b/arch/powerpc64/bits/syscall.h.in index a128890b..b5793172 100644 --- a/arch/powerpc64/bits/syscall.h.in +++ b/arch/powerpc64/bits/syscall.h.in @@ -392,4 +392,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/riscv64/bits/syscall.h.in b/arch/riscv64/bits/syscall.h.in index 39c0d650..df6bf5c2 100644 --- a/arch/riscv64/bits/syscall.h.in +++ b/arch/riscv64/bits/syscall.h.in @@ -294,6 +294,7 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441  #define __NR_sysriscv __NR_arch_specific_syscall  #define __NR_riscv_flush_icache (__NR_sysriscv + 15) diff --git a/arch/s390x/bits/syscall.h.in b/arch/s390x/bits/syscall.h.in index 9c8d984e..16ec02ee 100644 --- a/arch/s390x/bits/syscall.h.in +++ b/arch/s390x/bits/syscall.h.in @@ -357,4 +357,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/sh/bits/syscall.h.in b/arch/sh/bits/syscall.h.in index 17dd7e07..4fc1f9e8 100644 --- a/arch/sh/bits/syscall.h.in +++ b/arch/sh/bits/syscall.h.in @@ -404,4 +404,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441 diff --git a/arch/x32/bits/syscall.h.in b/arch/x32/bits/syscall.h.in index 5361442e..14c7231f 100644 --- a/arch/x32/bits/syscall.h.in +++ b/arch/x32/bits/syscall.h.in @@ -303,6 +303,7 @@  #define __NR_pidfd_getfd	(0x40000000 + 438)  #define __NR_faccessat2		(0x40000000 + 439)  #define __NR_process_madvise	(0x40000000 + 440) +#define __NR_epoll_pwait2	(0x40000000 + 441)  #define __NR_rt_sigaction (0x40000000 + 512) diff --git a/arch/x86_64/bits/syscall.h.in b/arch/x86_64/bits/syscall.h.in index e943883d..f611884e 100644 --- a/arch/x86_64/bits/syscall.h.in +++ b/arch/x86_64/bits/syscall.h.in @@ -350,4 +350,5 @@  #define __NR_pidfd_getfd	438  #define __NR_faccessat2		439  #define __NR_process_madvise	440 +#define __NR_epoll_pwait2	441  | 
