File tree Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Expand file tree Collapse file tree 2 files changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -734,8 +734,12 @@ posix_fadvise
734734posix_fallocate
735735posix_madvise
736736posix_spawn
737+ posix_spawn_file_actions_addchdir
738+ posix_spawn_file_actions_addchdir_np
737739posix_spawn_file_actions_addclose
738740posix_spawn_file_actions_adddup2
741+ posix_spawn_file_actions_addfchdir
742+ posix_spawn_file_actions_addfchdir_np
739743posix_spawn_file_actions_addopen
740744posix_spawn_file_actions_destroy
741745posix_spawn_file_actions_init
Original file line number Diff line number Diff line change @@ -2479,6 +2479,22 @@ extern "C" {
24792479 fd : c_int ,
24802480 newfd : c_int ,
24812481 ) -> 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 ;
24822498
24832499 pub fn forkpty (
24842500 amaster : * mut c_int ,
You can’t perform that action at this time.
0 commit comments