Home
last modified time | relevance | path

Searched refs:child_execute_job (Results 1 – 6 of 6) sorted by relevance

/ndk/sources/host-tools/make-3.81/
Djob.h75 extern int child_execute_job PARAMS ((char *argv, struct child *child));
77 extern int child_execute_job PARAMS ((int stdin_fd, int stdout_fd, char **argv, char **envp));
79 extern void child_execute_job PARAMS ((int stdin_fd, int stdout_fd, char **argv, char **envp));
Djob.c1218 if (!child_execute_job (argv, child)) { in start_job_command()
1240 child->pid = child_execute_job (child->good_stdin ? 0 : bad_stdin, 1, in start_job_command()
1278 child_execute_job (child->good_stdin ? 0 : bad_stdin, 1, in start_job_command()
1897 child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp) in child_execute_job() function
1960 child_execute_job (int stdin_fd, int stdout_fd, char **argv, char **envp) in child_execute_job() function
Dvmsjobs.c293 child_execute_job (char *argv, struct child *child) in child_execute_job() function
Dfunction.c1656 pid = child_execute_job (0, pipedes[1], command_argv, envp); in func_shell()
1666 child_execute_job (0, pipedes[1], command_argv, envp); in func_shell()
DChangeLog713 Don't create child_execute_job() here (it's in vmsjobs.c).
795 tryToSetupYAst, child_execute_job) [VMS]: Move VMS-specific
1181 * job.c (child_execute_job) [VMS]: Don't treat "#" as a comment on
1366 * job.c (child_execute_job): Close saved FDs.
1667 child_execute_job() instead of fork/exec.
1668 (child_execute_job): Rewrite to handle stdin/stdout FDs and spawn
1676 use -j in DOS mode. Use child_execute_job() instead of
1696 * job.c (child_execute_job) [VMS]: New code for handling spawn().
1697 (child_execute_job) [VMS]: Handle error status properly.
Dmain.c2094 pid = child_execute_job (0, 1, nargv, environ); in main()