Add process_madvise to Linux syscalls (#7450)
7 files changed, 7 insertions(+), 0 deletions(-)
lib
std
lib/std/os/bits/linux/arm-eabi.zig+1
| ... | ... | @@ -411,6 +411,7 @@ pub const SYS = extern enum(usize) { |
| 411 | 411 | openat2 = 437, |
| 412 | 412 | pidfd_getfd = 438, |
| 413 | 413 | faccessat2 = 439, |
| 414 | process_madvise = 440, |
| 414 | 415 | |
| 415 | 416 | breakpoint = 0x0f0001, |
| 416 | 417 | cacheflush = 0x0f0002, |
lib/std/os/bits/linux/arm64.zig+1
| ... | ... | @@ -312,6 +312,7 @@ pub const SYS = extern enum(usize) { |
| 312 | 312 | openat2 = 437, |
| 313 | 313 | pidfd_getfd = 438, |
| 314 | 314 | faccessat2 = 439, |
| 315 | process_madvise = 440, |
| 315 | 316 | |
| 316 | 317 | _, |
| 317 | 318 | }; |
lib/std/os/bits/linux/i386.zig+1
| ... | ... | @@ -447,6 +447,7 @@ pub const SYS = extern enum(usize) { |
| 447 | 447 | openat2 = 437, |
| 448 | 448 | pidfd_getfd = 438, |
| 449 | 449 | faccessat2 = 439, |
| 450 | process_madvise = 440, |
| 450 | 451 | |
| 451 | 452 | _, |
| 452 | 453 | }; |
lib/std/os/bits/linux/powerpc64.zig+1
| ... | ... | @@ -408,6 +408,7 @@ pub const SYS = extern enum(usize) { |
| 408 | 408 | openat2 = 437, |
| 409 | 409 | pidfd_getfd = 438, |
| 410 | 410 | faccessat2 = 439, |
| 411 | process_madvise = 440, |
| 411 | 412 | |
| 412 | 413 | _, |
| 413 | 414 | }; |
lib/std/os/bits/linux/riscv64.zig+1
| ... | ... | @@ -309,6 +309,7 @@ pub const SYS = extern enum(usize) { |
| 309 | 309 | openat2 = 437, |
| 310 | 310 | pidfd_getfd = 438, |
| 311 | 311 | faccessat2 = 439, |
| 312 | process_madvise = 440, |
| 312 | 313 | |
| 313 | 314 | _, |
| 314 | 315 | }; |
lib/std/os/bits/linux/sparc64.zig+1
| ... | ... | @@ -386,6 +386,7 @@ pub const SYS = extern enum(usize) { |
| 386 | 386 | openat2 = 437, |
| 387 | 387 | pidfd_getfd = 438, |
| 388 | 388 | faccessat2 = 439, |
| 389 | process_madvise = 440, |
| 389 | 390 | |
| 390 | 391 | _, |
| 391 | 392 | }; |
lib/std/os/bits/linux/x86_64.zig+1
| ... | ... | @@ -374,6 +374,7 @@ pub const SYS = extern enum(usize) { |
| 374 | 374 | openat2 = 437, |
| 375 | 375 | pidfd_getfd = 438, |
| 376 | 376 | faccessat2 = 439, |
| 377 | process_madvise = 440, |
| 377 | 378 | |
| 378 | 379 | _, |
| 379 | 380 | }; |