File tree Expand file tree Collapse file tree 6 files changed +54
-0
lines changed
src/unix/linux_like/android Expand file tree Collapse file tree 6 files changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -2303,7 +2303,11 @@ SYS_finit_module
23032303SYS_flistxattr
23042304SYS_flock
23052305SYS_fremovexattr
2306+ SYS_fsconfig
23062307SYS_fsetxattr
2308+ SYS_fsmount
2309+ SYS_fsopen
2310+ SYS_fspick
23072311SYS_fsync
23082312SYS_futex
23092313SYS_get_mempolicy
@@ -2341,6 +2345,9 @@ SYS_io_destroy
23412345SYS_io_getevents
23422346SYS_io_setup
23432347SYS_io_submit
2348+ SYS_io_uring_enter
2349+ SYS_io_uring_register
2350+ SYS_io_uring_setup
23442351SYS_ioctl
23452352SYS_ioprio_get
23462353SYS_ioprio_set
@@ -2367,6 +2374,7 @@ SYS_mlock
23672374SYS_mlock2
23682375SYS_mlockall
23692376SYS_mount
2377+ SYS_move_mount
23702378SYS_move_pages
23712379SYS_mprotect
23722380SYS_mq_getsetattr
@@ -2384,9 +2392,11 @@ SYS_name_to_handle_at
23842392SYS_nanosleep
23852393SYS_nfsservctl
23862394SYS_open_by_handle_at
2395+ SYS_open_tree
23872396SYS_openat
23882397SYS_perf_event_open
23892398SYS_personality
2399+ SYS_pidfd_send_signal
23902400SYS_pipe2
23912401SYS_pivot_root
23922402SYS_pkey_alloc
@@ -2473,6 +2483,7 @@ SYS_signalfd4
24732483SYS_socket
24742484SYS_socketpair
24752485SYS_splice
2486+ SYS_statx
24762487SYS_swapoff
24772488SYS_swapon
24782489SYS_symlinkat
Original file line number Diff line number Diff line change @@ -501,9 +501,17 @@ pub const SYS_pwritev2: ::c_long = 393;
501501pub const SYS_pkey_mprotect : :: c_long = 394 ;
502502pub const SYS_pkey_alloc : :: c_long = 395 ;
503503pub const SYS_pkey_free : :: c_long = 396 ;
504+ pub const SYS_statx : :: c_long = 397 ;
505+ pub const SYS_pidfd_send_signal : :: c_long = 424 ;
504506pub const SYS_io_uring_setup : :: c_long = 425 ;
505507pub const SYS_io_uring_enter : :: c_long = 426 ;
506508pub const SYS_io_uring_register : :: c_long = 427 ;
509+ pub const SYS_open_tree : :: c_long = 428 ;
510+ pub const SYS_move_mount : :: c_long = 429 ;
511+ pub const SYS_fsopen : :: c_long = 430 ;
512+ pub const SYS_fsconfig : :: c_long = 431 ;
513+ pub const SYS_fsmount : :: c_long = 432 ;
514+ pub const SYS_fspick : :: c_long = 433 ;
507515
508516// offsets in mcontext_t.gregs from sys/ucontext.h
509517pub const REG_R0 : :: c_int = 0 ;
Original file line number Diff line number Diff line change @@ -533,9 +533,17 @@ pub const SYS_pwritev2: ::c_long = 379;
533533pub const SYS_pkey_mprotect : :: c_long = 380 ;
534534pub const SYS_pkey_alloc : :: c_long = 381 ;
535535pub const SYS_pkey_free : :: c_long = 382 ;
536+ pub const SYS_statx : :: c_long = 383 ;
537+ pub const SYS_pidfd_send_signal : :: c_long = 424 ;
536538pub const SYS_io_uring_setup : :: c_long = 425 ;
537539pub const SYS_io_uring_enter : :: c_long = 426 ;
538540pub const SYS_io_uring_register : :: c_long = 427 ;
541+ pub const SYS_open_tree : :: c_long = 428 ;
542+ pub const SYS_move_mount : :: c_long = 429 ;
543+ pub const SYS_fsopen : :: c_long = 430 ;
544+ pub const SYS_fsconfig : :: c_long = 431 ;
545+ pub const SYS_fsmount : :: c_long = 432 ;
546+ pub const SYS_fspick : :: c_long = 433 ;
539547
540548// offsets in user_regs_structs, from sys/reg.h
541549pub const EBX : :: c_int = 0 ;
Original file line number Diff line number Diff line change @@ -374,9 +374,17 @@ pub const SYS_pwritev2: ::c_long = 287;
374374pub const SYS_pkey_mprotect : :: c_long = 288 ;
375375pub const SYS_pkey_alloc : :: c_long = 289 ;
376376pub const SYS_pkey_free : :: c_long = 290 ;
377+ pub const SYS_statx : :: c_long = 291 ;
378+ pub const SYS_pidfd_send_signal : :: c_long = 424 ;
377379pub const SYS_io_uring_setup : :: c_long = 425 ;
378380pub const SYS_io_uring_enter : :: c_long = 426 ;
379381pub const SYS_io_uring_register : :: c_long = 427 ;
382+ pub const SYS_open_tree : :: c_long = 428 ;
383+ pub const SYS_move_mount : :: c_long = 429 ;
384+ pub const SYS_fsopen : :: c_long = 430 ;
385+ pub const SYS_fsconfig : :: c_long = 431 ;
386+ pub const SYS_fsmount : :: c_long = 432 ;
387+ pub const SYS_fspick : :: c_long = 433 ;
380388pub const SYS_syscalls : :: c_long = 436 ;
381389
382390cfg_if ! {
Original file line number Diff line number Diff line change @@ -332,6 +332,17 @@ pub const SYS_pwritev2: ::c_long = 287;
332332pub const SYS_pkey_mprotect : :: c_long = 288 ;
333333pub const SYS_pkey_alloc : :: c_long = 289 ;
334334pub const SYS_pkey_free : :: c_long = 290 ;
335+ pub const SYS_statx : :: c_long = 291 ;
336+ pub const SYS_pidfd_send_signal : :: c_long = 424 ;
337+ pub const SYS_io_uring_setup : :: c_long = 425 ;
338+ pub const SYS_io_uring_enter : :: c_long = 426 ;
339+ pub const SYS_io_uring_register : :: c_long = 427 ;
340+ pub const SYS_open_tree : :: c_long = 428 ;
341+ pub const SYS_move_mount : :: c_long = 429 ;
342+ pub const SYS_fsopen : :: c_long = 430 ;
343+ pub const SYS_fsconfig : :: c_long = 431 ;
344+ pub const SYS_fsmount : :: c_long = 432 ;
345+ pub const SYS_fspick : :: c_long = 433 ;
335346pub const SYS_syscalls : :: c_long = 436 ;
336347
337348cfg_if ! {
Original file line number Diff line number Diff line change @@ -728,9 +728,17 @@ pub const SYS_pwritev2: ::c_long = 328;
728728pub const SYS_pkey_mprotect : :: c_long = 329 ;
729729pub const SYS_pkey_alloc : :: c_long = 330 ;
730730pub const SYS_pkey_free : :: c_long = 331 ;
731+ pub const SYS_statx : :: c_long = 332 ;
732+ pub const SYS_pidfd_send_signal : :: c_long = 424 ;
731733pub const SYS_io_uring_setup : :: c_long = 425 ;
732734pub const SYS_io_uring_enter : :: c_long = 426 ;
733735pub const SYS_io_uring_register : :: c_long = 427 ;
736+ pub const SYS_open_tree : :: c_long = 428 ;
737+ pub const SYS_move_mount : :: c_long = 429 ;
738+ pub const SYS_fsopen : :: c_long = 430 ;
739+ pub const SYS_fsconfig : :: c_long = 431 ;
740+ pub const SYS_fsmount : :: c_long = 432 ;
741+ pub const SYS_fspick : :: c_long = 433 ;
734742
735743// offsets in user_regs_structs, from sys/reg.h
736744pub const R15 : :: c_int = 0 ;
You can’t perform that action at this time.
0 commit comments