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
2303
2303
SYS_flistxattr
2304
2304
SYS_flock
2305
2305
SYS_fremovexattr
2306
+ SYS_fsconfig
2306
2307
SYS_fsetxattr
2308
+ SYS_fsmount
2309
+ SYS_fsopen
2310
+ SYS_fspick
2307
2311
SYS_fsync
2308
2312
SYS_futex
2309
2313
SYS_get_mempolicy
@@ -2341,6 +2345,9 @@ SYS_io_destroy
2341
2345
SYS_io_getevents
2342
2346
SYS_io_setup
2343
2347
SYS_io_submit
2348
+ SYS_io_uring_enter
2349
+ SYS_io_uring_register
2350
+ SYS_io_uring_setup
2344
2351
SYS_ioctl
2345
2352
SYS_ioprio_get
2346
2353
SYS_ioprio_set
@@ -2367,6 +2374,7 @@ SYS_mlock
2367
2374
SYS_mlock2
2368
2375
SYS_mlockall
2369
2376
SYS_mount
2377
+ SYS_move_mount
2370
2378
SYS_move_pages
2371
2379
SYS_mprotect
2372
2380
SYS_mq_getsetattr
@@ -2384,9 +2392,11 @@ SYS_name_to_handle_at
2384
2392
SYS_nanosleep
2385
2393
SYS_nfsservctl
2386
2394
SYS_open_by_handle_at
2395
+ SYS_open_tree
2387
2396
SYS_openat
2388
2397
SYS_perf_event_open
2389
2398
SYS_personality
2399
+ SYS_pidfd_send_signal
2390
2400
SYS_pipe2
2391
2401
SYS_pivot_root
2392
2402
SYS_pkey_alloc
@@ -2473,6 +2483,7 @@ SYS_signalfd4
2473
2483
SYS_socket
2474
2484
SYS_socketpair
2475
2485
SYS_splice
2486
+ SYS_statx
2476
2487
SYS_swapoff
2477
2488
SYS_swapon
2478
2489
SYS_symlinkat
Original file line number Diff line number Diff line change @@ -501,9 +501,17 @@ pub const SYS_pwritev2: ::c_long = 393;
501
501
pub const SYS_pkey_mprotect : :: c_long = 394 ;
502
502
pub const SYS_pkey_alloc : :: c_long = 395 ;
503
503
pub 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 ;
504
506
pub const SYS_io_uring_setup : :: c_long = 425 ;
505
507
pub const SYS_io_uring_enter : :: c_long = 426 ;
506
508
pub 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 ;
507
515
508
516
// offsets in mcontext_t.gregs from sys/ucontext.h
509
517
pub 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;
533
533
pub const SYS_pkey_mprotect : :: c_long = 380 ;
534
534
pub const SYS_pkey_alloc : :: c_long = 381 ;
535
535
pub 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 ;
536
538
pub const SYS_io_uring_setup : :: c_long = 425 ;
537
539
pub const SYS_io_uring_enter : :: c_long = 426 ;
538
540
pub 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 ;
539
547
540
548
// offsets in user_regs_structs, from sys/reg.h
541
549
pub 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;
374
374
pub const SYS_pkey_mprotect : :: c_long = 288 ;
375
375
pub const SYS_pkey_alloc : :: c_long = 289 ;
376
376
pub 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 ;
377
379
pub const SYS_io_uring_setup : :: c_long = 425 ;
378
380
pub const SYS_io_uring_enter : :: c_long = 426 ;
379
381
pub 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 ;
380
388
pub const SYS_syscalls : :: c_long = 436 ;
381
389
382
390
cfg_if ! {
Original file line number Diff line number Diff line change @@ -332,6 +332,17 @@ pub const SYS_pwritev2: ::c_long = 287;
332
332
pub const SYS_pkey_mprotect : :: c_long = 288 ;
333
333
pub const SYS_pkey_alloc : :: c_long = 289 ;
334
334
pub 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 ;
335
346
pub const SYS_syscalls : :: c_long = 436 ;
336
347
337
348
cfg_if ! {
Original file line number Diff line number Diff line change @@ -728,9 +728,17 @@ pub const SYS_pwritev2: ::c_long = 328;
728
728
pub const SYS_pkey_mprotect : :: c_long = 329 ;
729
729
pub const SYS_pkey_alloc : :: c_long = 330 ;
730
730
pub 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 ;
731
733
pub const SYS_io_uring_setup : :: c_long = 425 ;
732
734
pub const SYS_io_uring_enter : :: c_long = 426 ;
733
735
pub 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 ;
734
742
735
743
// offsets in user_regs_structs, from sys/reg.h
736
744
pub const R15 : :: c_int = 0 ;
You can’t perform that action at this time.
0 commit comments