Lines Matching refs:posix_spawn_file_actions_t
40 } posix_spawn_file_actions_t;
42 int posix_spawn(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
44 int posix_spawnp(pid_t *__restrict, const char *__restrict, const posix_spawn_file_actions_t *,
67 int posix_spawn_file_actions_init(posix_spawn_file_actions_t *);
68 int posix_spawn_file_actions_destroy(posix_spawn_file_actions_t *);
70 int posix_spawn_file_actions_addopen(posix_spawn_file_actions_t *__restrict, int, const char *__restrict, int, mode_t);
71 int posix_spawn_file_actions_addclose(posix_spawn_file_actions_t *, int);
72 int posix_spawn_file_actions_adddup2(posix_spawn_file_actions_t *, int, int);
75 int posix_spawn_file_actions_addchdir_np(posix_spawn_file_actions_t *__restrict, const char *__restrict);
76 int posix_spawn_file_actions_addfchdir_np(posix_spawn_file_actions_t *, int);