Lines Matching defs:procnew
206 static int daemon_start(apr_pool_t *p, server_rec *main_server, apr_proc_t *procnew);
1057 apr_proc_t *procnew)
1071 procnew->pid = daemon_pid;
1072 procnew->err = procnew->in = procnew->out = NULL;
1073 apr_pool_note_subprocess(p, procnew, APR_KILL_AFTER_TIMEOUT);
1075 apr_proc_other_child_register(procnew, daemon_maint, procnew, NULL, p);
1224 apr_proc_t *procnew = NULL;
1230 procnew = ap_retained_data_get(userdata_key);
1231 if (!procnew) {
1232 procnew = ap_retained_data_create(userdata_key, sizeof(*procnew));
1233 procnew->pid = -1;
1234 procnew->err = procnew->in = procnew->out = NULL;
1337 int ret = daemon_start(pconf, s_main, procnew);