mirror of
https://github.com/ziglang/zig.git
synced 2026-02-17 14:59:14 +00:00
Add epoll_pwait2 Linux syscall
This commit is contained in:
parent
a5dcd07382
commit
340825a7af
@ -412,6 +412,7 @@ pub const SYS = extern enum(usize) {
|
||||
pidfd_getfd = 438,
|
||||
faccessat2 = 439,
|
||||
process_madvise = 440,
|
||||
epoll_pwait2 = 441,
|
||||
|
||||
breakpoint = 0x0f0001,
|
||||
cacheflush = 0x0f0002,
|
||||
|
||||
@ -313,6 +313,7 @@ pub const SYS = extern enum(usize) {
|
||||
pidfd_getfd = 438,
|
||||
faccessat2 = 439,
|
||||
process_madvise = 440,
|
||||
epoll_pwait2 = 441,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
@ -448,6 +448,7 @@ pub const SYS = extern enum(usize) {
|
||||
pidfd_getfd = 438,
|
||||
faccessat2 = 439,
|
||||
process_madvise = 440,
|
||||
epoll_pwait2 = 441,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
@ -430,6 +430,7 @@ pub const SYS = extern enum(usize) {
|
||||
pidfd_getfd = Linux + 438,
|
||||
faccessat2 = Linux + 439,
|
||||
process_madvise = Linux + 440,
|
||||
epoll_pwait2 = Linux + 441,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
@ -409,6 +409,7 @@ pub const SYS = extern enum(usize) {
|
||||
pidfd_getfd = 438,
|
||||
faccessat2 = 439,
|
||||
process_madvise = 440,
|
||||
epoll_pwait2 = 441,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
@ -310,6 +310,7 @@ pub const SYS = extern enum(usize) {
|
||||
pidfd_getfd = 438,
|
||||
faccessat2 = 439,
|
||||
process_madvise = 440,
|
||||
epoll_pwait2 = 441,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
@ -387,6 +387,7 @@ pub const SYS = extern enum(usize) {
|
||||
pidfd_getfd = 438,
|
||||
faccessat2 = 439,
|
||||
process_madvise = 440,
|
||||
epoll_pwait2 = 441,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
@ -375,6 +375,7 @@ pub const SYS = extern enum(usize) {
|
||||
pidfd_getfd = 438,
|
||||
faccessat2 = 439,
|
||||
process_madvise = 440,
|
||||
epoll_pwait2 = 441,
|
||||
|
||||
_,
|
||||
};
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user