| author | |
| committer | |
| log | e30cd800e23e419fa1bb48f3b63168becc431211 |
| tree | 835214d5eef3025c268a9dce5be1e4ac7cfc114b |
| parent | 6b36b756eb4b4c26b98d405310680ebe5679d111 |
2 files changed, 19 insertions(+), 1 deletions(-)
std/os/linux/arm64.zig+6-1| ... | ... | @@ -280,7 +280,12 @@ pub const SYS_pkey_alloc = 289; |
| 280 | 280 | pub const SYS_pkey_free = 290; |
| 281 | 281 | pub const SYS_statx = 291; |
| 282 | 282 | pub const SYS_io_pgetevents = 292; |
| 283 | pub const SYS_syscalls = 293; | |
| 283 | pub const SYS_rseq = 293; | |
| 284 | pub const SYS_kexec_file_load = 294; | |
| 285 | pub const SYS_pidfd_send_signal = 424; | |
| 286 | pub const SYS_io_uring_setup = 425; | |
| 287 | pub const SYS_io_uring_enter = 426; | |
| 288 | pub const SYS_io_uring_register = 427; | |
| 284 | 289 | |
| 285 | 290 | pub const O_CREAT = 0o100; |
| 286 | 291 | pub const O_EXCL = 0o200; |
std/os/linux/x86_64.zig+13| ... | ... | @@ -333,6 +333,19 @@ pub const SYS_execveat = 322; |
| 333 | 333 | pub const SYS_userfaultfd = 323; |
| 334 | 334 | pub const SYS_membarrier = 324; |
| 335 | 335 | pub const SYS_mlock2 = 325; |
| 336 | pub const SYS_copy_file_range = 326; | |
| 337 | pub const SYS_preadv2 = 327; | |
| 338 | pub const SYS_pwritev2 = 328; | |
| 339 | pub const SYS_pkey_mprotect = 329; | |
| 340 | pub const SYS_pkey_alloc = 330; | |
| 341 | pub const SYS_pkey_free = 331; | |
| 342 | pub const SYS_statx = 332; | |
| 343 | pub const SYS_io_pgetevents = 333; | |
| 344 | pub const SYS_rseq = 334; | |
| 345 | pub const SYS_pidfd_send_signal = 424; | |
| 346 | pub const SYS_io_uring_setup = 425; | |
| 347 | pub const SYS_io_uring_enter = 426; | |
| 348 | pub const SYS_io_uring_register = 427; | |
| 336 | 349 | |
| 337 | 350 | pub const O_CREAT = 0o100; |
| 338 | 351 | pub const O_EXCL = 0o200; |