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) {
412412 pidfd_getfd = 438,
413413 faccessat2 = 439,
414414 process_madvise = 440,
415 epoll_pwait2 = 441,
415416
416417 breakpoint = 0x0f0001,
417418 cacheflush = 0x0f0002,
lib/std/os/bits/linux/arm64.zig+1
......@@ -313,6 +313,7 @@ pub const SYS = extern enum(usize) {
313313 pidfd_getfd = 438,
314314 faccessat2 = 439,
315315 process_madvise = 440,
316 epoll_pwait2 = 441,
316317
317318 _,
318319};
lib/std/os/bits/linux/i386.zig+1
......@@ -448,6 +448,7 @@ pub const SYS = extern enum(usize) {
448448 pidfd_getfd = 438,
449449 faccessat2 = 439,
450450 process_madvise = 440,
451 epoll_pwait2 = 441,
451452
452453 _,
453454};
lib/std/os/bits/linux/mips.zig+1
......@@ -430,6 +430,7 @@ pub const SYS = extern enum(usize) {
430430 pidfd_getfd = Linux + 438,
431431 faccessat2 = Linux + 439,
432432 process_madvise = Linux + 440,
433 epoll_pwait2 = Linux + 441,
433434
434435 _,
435436};
lib/std/os/bits/linux/powerpc64.zig+1
......@@ -409,6 +409,7 @@ pub const SYS = extern enum(usize) {
409409 pidfd_getfd = 438,
410410 faccessat2 = 439,
411411 process_madvise = 440,
412 epoll_pwait2 = 441,
412413
413414 _,
414415};
lib/std/os/bits/linux/riscv64.zig+1
......@@ -310,6 +310,7 @@ pub const SYS = extern enum(usize) {
310310 pidfd_getfd = 438,
311311 faccessat2 = 439,
312312 process_madvise = 440,
313 epoll_pwait2 = 441,
313314
314315 _,
315316};
lib/std/os/bits/linux/sparc64.zig+1
......@@ -387,6 +387,7 @@ pub const SYS = extern enum(usize) {
387387 pidfd_getfd = 438,
388388 faccessat2 = 439,
389389 process_madvise = 440,
390 epoll_pwait2 = 441,
390391
391392 _,
392393};
lib/std/os/bits/linux/x86_64.zig+1
......@@ -375,6 +375,7 @@ pub const SYS = extern enum(usize) {
375375 pidfd_getfd = 438,
376376 faccessat2 = 439,
377377 process_madvise = 440,
378 epoll_pwait2 = 441,
378379
379380 _,
380381};