File tree 2 files changed +20
-0
lines changed
2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -734,8 +734,12 @@ posix_fadvise
734
734
posix_fallocate
735
735
posix_madvise
736
736
posix_spawn
737
+ posix_spawn_file_actions_addchdir
738
+ posix_spawn_file_actions_addchdir_np
737
739
posix_spawn_file_actions_addclose
738
740
posix_spawn_file_actions_adddup2
741
+ posix_spawn_file_actions_addfchdir
742
+ posix_spawn_file_actions_addfchdir_np
739
743
posix_spawn_file_actions_addopen
740
744
posix_spawn_file_actions_destroy
741
745
posix_spawn_file_actions_init
Original file line number Diff line number Diff line change @@ -2479,6 +2479,22 @@ extern "C" {
2479
2479
fd : c_int ,
2480
2480
newfd : c_int ,
2481
2481
) -> c_int ;
2482
+ pub fn posix_spawn_file_actions_addchdir (
2483
+ actions : * mut crate :: posix_spawn_file_actions_t ,
2484
+ path : * const c_char ,
2485
+ ) -> c_int ;
2486
+ pub fn posix_spawn_file_actions_addfchdir (
2487
+ actions : * mut crate :: posix_spawn_file_actions_t ,
2488
+ fd : c_int ,
2489
+ ) -> c_int ;
2490
+ pub fn posix_spawn_file_actions_addchdir_np (
2491
+ actions : * mut crate :: posix_spawn_file_actions_t ,
2492
+ path : * const c_char ,
2493
+ ) -> c_int ;
2494
+ pub fn posix_spawn_file_actions_addfchdir_np (
2495
+ actions : * mut crate :: posix_spawn_file_actions_t ,
2496
+ fd : c_int ,
2497
+ ) -> c_int ;
2482
2498
2483
2499
pub fn forkpty (
2484
2500
amaster : * mut c_int ,
You can’t perform that action at this time.
0 commit comments