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) {...@@ -411,6 +411,7 @@ pub const SYS = extern enum(usize) {
411 openat2 = 437,411 openat2 = 437,
412 pidfd_getfd = 438,412 pidfd_getfd = 438,
413 faccessat2 = 439,413 faccessat2 = 439,
414 process_madvise = 440,
414415
415 breakpoint = 0x0f0001,416 breakpoint = 0x0f0001,
416 cacheflush = 0x0f0002,417 cacheflush = 0x0f0002,
lib/std/os/bits/linux/arm64.zig+1
...@@ -312,6 +312,7 @@ pub const SYS = extern enum(usize) {...@@ -312,6 +312,7 @@ pub const SYS = extern enum(usize) {
312 openat2 = 437,312 openat2 = 437,
313 pidfd_getfd = 438,313 pidfd_getfd = 438,
314 faccessat2 = 439,314 faccessat2 = 439,
315 process_madvise = 440,
315316
316 _,317 _,
317};318};
lib/std/os/bits/linux/i386.zig+1
...@@ -447,6 +447,7 @@ pub const SYS = extern enum(usize) {...@@ -447,6 +447,7 @@ pub const SYS = extern enum(usize) {
447 openat2 = 437,447 openat2 = 437,
448 pidfd_getfd = 438,448 pidfd_getfd = 438,
449 faccessat2 = 439,449 faccessat2 = 439,
450 process_madvise = 440,
450451
451 _,452 _,
452};453};
lib/std/os/bits/linux/powerpc64.zig+1
...@@ -408,6 +408,7 @@ pub const SYS = extern enum(usize) {...@@ -408,6 +408,7 @@ pub const SYS = extern enum(usize) {
408 openat2 = 437,408 openat2 = 437,
409 pidfd_getfd = 438,409 pidfd_getfd = 438,
410 faccessat2 = 439,410 faccessat2 = 439,
411 process_madvise = 440,
411412
412 _,413 _,
413};414};
lib/std/os/bits/linux/riscv64.zig+1
...@@ -309,6 +309,7 @@ pub const SYS = extern enum(usize) {...@@ -309,6 +309,7 @@ pub const SYS = extern enum(usize) {
309 openat2 = 437,309 openat2 = 437,
310 pidfd_getfd = 438,310 pidfd_getfd = 438,
311 faccessat2 = 439,311 faccessat2 = 439,
312 process_madvise = 440,
312313
313 _,314 _,
314};315};
lib/std/os/bits/linux/sparc64.zig+1
...@@ -386,6 +386,7 @@ pub const SYS = extern enum(usize) {...@@ -386,6 +386,7 @@ pub const SYS = extern enum(usize) {
386 openat2 = 437,386 openat2 = 437,
387 pidfd_getfd = 438,387 pidfd_getfd = 438,
388 faccessat2 = 439,388 faccessat2 = 439,
389 process_madvise = 440,
389390
390 _,391 _,
391};392};
lib/std/os/bits/linux/x86_64.zig+1
...@@ -374,6 +374,7 @@ pub const SYS = extern enum(usize) {...@@ -374,6 +374,7 @@ pub const SYS = extern enum(usize) {
374 openat2 = 437,374 openat2 = 437,
375 pidfd_getfd = 438,375 pidfd_getfd = 438,
376 faccessat2 = 439,376 faccessat2 = 439,
377 process_madvise = 440,
377378
378 _,379 _,
379};380};