Lines Matching refs:process
45 #include <process.h> /* for getpid() on Win32 */
104 /* track pipe handles to close in child process */
121 /** The pipe between the server and the logging process */
124 /** The name of the program the logging process is running */
126 /** The pid of the logging process */
143 /* remember to close this handle in the child process
146 * take the parent process's child procs.
241 /* Create a child process running PROGNAME with a pipe connected to
250 /* Child process code for 'ErrorLog "|..."';
328 "Couldn't start ErrorLog process '%s'.",
385 * We *presume* the parent of plog is a process
489 apr_file_open_stderr(&errfile, s->process->pool);
491 apr_file_dup2(s->error_log, errfile, s->process->pool);
1467 process_rec *process = s->process;
1472 * in process->argv, with spaces in between.
1474 for (i = 0; i < process->argc; i++) {
1475 len_needed += strlen(process->argv[i]) + 1;
1481 for (i = 0; i < process->argc; i++) {
1482 strcat(result, process->argv[i]);
1483 if ((i+1)< process->argc) {
1640 /* Spawn the piped logger process pl->program. */
1661 "piped_log_spawn: unable to setup child process '%s'",
1816 "Couldn't start piped log process '%s'.",