authorgravatar for data-man@users.noreply.github.comDmitry Atamanov <data-man@users.noreply.github.com> 2020-12-17 21:58:09+05:00
committergravatar for noreply@github.comGitHub <noreply@github.com> 2020-12-17 18:58:09+02:00
loge16997a66cd8eccc5d7bcb819355100b34ce5c44
tree31f7447ef2468409329a7da4daef6a8d47f88f2e
parent6dfe9cc83ea75a663b4f6dfa488b95950207a1cf
signaturebadge-question-mark Signed by PGP key 4AEE18F83AFDEB23

Add process_madvise to Linux syscalls (#7450)


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

lib/std/os/bits/linux/arm-eabi.zig+1
......@@ -411,6 +411,7 @@ pub const SYS = extern enum(usize) {
411411 openat2 = 437,
412412 pidfd_getfd = 438,
413413 faccessat2 = 439,
414 process_madvise = 440,
414415
415416 breakpoint = 0x0f0001,
416417 cacheflush = 0x0f0002,
lib/std/os/bits/linux/arm64.zig+1
......@@ -312,6 +312,7 @@ pub const SYS = extern enum(usize) {
312312 openat2 = 437,
313313 pidfd_getfd = 438,
314314 faccessat2 = 439,
315 process_madvise = 440,
315316
316317 _,
317318};
lib/std/os/bits/linux/i386.zig+1
......@@ -447,6 +447,7 @@ pub const SYS = extern enum(usize) {
447447 openat2 = 437,
448448 pidfd_getfd = 438,
449449 faccessat2 = 439,
450 process_madvise = 440,
450451
451452 _,
452453};
lib/std/os/bits/linux/powerpc64.zig+1
......@@ -408,6 +408,7 @@ pub const SYS = extern enum(usize) {
408408 openat2 = 437,
409409 pidfd_getfd = 438,
410410 faccessat2 = 439,
411 process_madvise = 440,
411412
412413 _,
413414};
lib/std/os/bits/linux/riscv64.zig+1
......@@ -309,6 +309,7 @@ pub const SYS = extern enum(usize) {
309309 openat2 = 437,
310310 pidfd_getfd = 438,
311311 faccessat2 = 439,
312 process_madvise = 440,
312313
313314 _,
314315};
lib/std/os/bits/linux/sparc64.zig+1
......@@ -386,6 +386,7 @@ pub const SYS = extern enum(usize) {
386386 openat2 = 437,
387387 pidfd_getfd = 438,
388388 faccessat2 = 439,
389 process_madvise = 440,
389390
390391 _,
391392};
lib/std/os/bits/linux/x86_64.zig+1
......@@ -374,6 +374,7 @@ pub const SYS = extern enum(usize) {
374374 openat2 = 437,
375375 pidfd_getfd = 438,
376376 faccessat2 = 439,
377 process_madvise = 440,
377378
378379 _,
379380};