authorgravatar for quae@daurnimator.comdaurnimator <quae@daurnimator.com> 2019-05-16 22:53:59+10:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2019-05-16 12:38:40-04:00
loge30cd800e23e419fa1bb48f3b63168becc431211
tree835214d5eef3025c268a9dce5be1e4ac7cfc114b
parent6b36b756eb4b4c26b98d405310680ebe5679d111

std: update linux syscalls to 5.1


2 files changed, 19 insertions(+), 1 deletions(-)

std/os/linux/arm64.zig+6-1
......@@ -280,7 +280,12 @@ pub const SYS_pkey_alloc = 289;
280280pub const SYS_pkey_free = 290;
281281pub const SYS_statx = 291;
282282pub const SYS_io_pgetevents = 292;
283pub const SYS_syscalls = 293;
283pub const SYS_rseq = 293;
284pub const SYS_kexec_file_load = 294;
285pub const SYS_pidfd_send_signal = 424;
286pub const SYS_io_uring_setup = 425;
287pub const SYS_io_uring_enter = 426;
288pub const SYS_io_uring_register = 427;
284289
285290pub const O_CREAT = 0o100;
286291pub const O_EXCL = 0o200;
std/os/linux/x86_64.zig+13
......@@ -333,6 +333,19 @@ pub const SYS_execveat = 322;
333333pub const SYS_userfaultfd = 323;
334334pub const SYS_membarrier = 324;
335335pub const SYS_mlock2 = 325;
336pub const SYS_copy_file_range = 326;
337pub const SYS_preadv2 = 327;
338pub const SYS_pwritev2 = 328;
339pub const SYS_pkey_mprotect = 329;
340pub const SYS_pkey_alloc = 330;
341pub const SYS_pkey_free = 331;
342pub const SYS_statx = 332;
343pub const SYS_io_pgetevents = 333;
344pub const SYS_rseq = 334;
345pub const SYS_pidfd_send_signal = 424;
346pub const SYS_io_uring_setup = 425;
347pub const SYS_io_uring_enter = 426;
348pub const SYS_io_uring_register = 427;
336349
337350pub const O_CREAT = 0o100;
338351pub const O_EXCL = 0o200;