authorgravatar for datamanrb@gmail.comdata-man <datamanrb@gmail.com> 2021-02-20 21:10:08+05:00
committergravatar for git@vexu.euVeikka Tuominen <git@vexu.eu> 2021-02-21 11:47:13+02:00
log340825a7afeb1909ab81c1e0258b81ff67323a2b
treeaf3742845e48ac5a7d45bfa61dcbdc8f18284a99
parenta5dcd07382aca0d429d31342de28f786c5f7fd20

Add epoll_pwait2 Linux syscall


8 files changed, 8 insertions(+), 0 deletions(-)

lib/std/os/bits/linux/arm-eabi.zig+1
...@@ -412,6 +412,7 @@ pub const SYS = extern enum(usize) {...@@ -412,6 +412,7 @@ pub const SYS = extern enum(usize) {
412 pidfd_getfd = 438,412 pidfd_getfd = 438,
413 faccessat2 = 439,413 faccessat2 = 439,
414 process_madvise = 440,414 process_madvise = 440,
415 epoll_pwait2 = 441,
415416
416 breakpoint = 0x0f0001,417 breakpoint = 0x0f0001,
417 cacheflush = 0x0f0002,418 cacheflush = 0x0f0002,
lib/std/os/bits/linux/arm64.zig+1
...@@ -313,6 +313,7 @@ pub const SYS = extern enum(usize) {...@@ -313,6 +313,7 @@ pub const SYS = extern enum(usize) {
313 pidfd_getfd = 438,313 pidfd_getfd = 438,
314 faccessat2 = 439,314 faccessat2 = 439,
315 process_madvise = 440,315 process_madvise = 440,
316 epoll_pwait2 = 441,
316317
317 _,318 _,
318};319};
lib/std/os/bits/linux/i386.zig+1
...@@ -448,6 +448,7 @@ pub const SYS = extern enum(usize) {...@@ -448,6 +448,7 @@ pub const SYS = extern enum(usize) {
448 pidfd_getfd = 438,448 pidfd_getfd = 438,
449 faccessat2 = 439,449 faccessat2 = 439,
450 process_madvise = 440,450 process_madvise = 440,
451 epoll_pwait2 = 441,
451452
452 _,453 _,
453};454};
lib/std/os/bits/linux/mips.zig+1
...@@ -430,6 +430,7 @@ pub const SYS = extern enum(usize) {...@@ -430,6 +430,7 @@ pub const SYS = extern enum(usize) {
430 pidfd_getfd = Linux + 438,430 pidfd_getfd = Linux + 438,
431 faccessat2 = Linux + 439,431 faccessat2 = Linux + 439,
432 process_madvise = Linux + 440,432 process_madvise = Linux + 440,
433 epoll_pwait2 = Linux + 441,
433434
434 _,435 _,
435};436};
lib/std/os/bits/linux/powerpc64.zig+1
...@@ -409,6 +409,7 @@ pub const SYS = extern enum(usize) {...@@ -409,6 +409,7 @@ pub const SYS = extern enum(usize) {
409 pidfd_getfd = 438,409 pidfd_getfd = 438,
410 faccessat2 = 439,410 faccessat2 = 439,
411 process_madvise = 440,411 process_madvise = 440,
412 epoll_pwait2 = 441,
412413
413 _,414 _,
414};415};
lib/std/os/bits/linux/riscv64.zig+1
...@@ -310,6 +310,7 @@ pub const SYS = extern enum(usize) {...@@ -310,6 +310,7 @@ pub const SYS = extern enum(usize) {
310 pidfd_getfd = 438,310 pidfd_getfd = 438,
311 faccessat2 = 439,311 faccessat2 = 439,
312 process_madvise = 440,312 process_madvise = 440,
313 epoll_pwait2 = 441,
313314
314 _,315 _,
315};316};
lib/std/os/bits/linux/sparc64.zig+1
...@@ -387,6 +387,7 @@ pub const SYS = extern enum(usize) {...@@ -387,6 +387,7 @@ pub const SYS = extern enum(usize) {
387 pidfd_getfd = 438,387 pidfd_getfd = 438,
388 faccessat2 = 439,388 faccessat2 = 439,
389 process_madvise = 440,389 process_madvise = 440,
390 epoll_pwait2 = 441,
390391
391 _,392 _,
392};393};
lib/std/os/bits/linux/x86_64.zig+1
...@@ -375,6 +375,7 @@ pub const SYS = extern enum(usize) {...@@ -375,6 +375,7 @@ pub const SYS = extern enum(usize) {
375 pidfd_getfd = 438,375 pidfd_getfd = 438,
376 faccessat2 = 439,376 faccessat2 = 439,
377 process_madvise = 440,377 process_madvise = 440,
378 epoll_pwait2 = 441,
378379
379 _,380 _,
380};381};