Lines Matching refs:pid
122 static struct fpm_child_s *fpm_child_find(pid_t pid) /* {{{ */ in fpm_child_find() argument
130 if (child->pid == pid) { in fpm_child_find()
180 pid_t pid; in fpm_children_bury() local
183 while ( (pid = waitpid(-1, &status, WNOHANG | WUNTRACED)) > 0) { in fpm_children_bury()
188 child = fpm_child_find(pid); in fpm_children_bury()
227 zlog(ZLOG_NOTICE, "child %d stopped for tracing", (int) pid); in fpm_children_bury()
252 …ited %s after %ld.%06d seconds from start", child->wp->config->name, (int) pid, buf, tv2.tv_sec, (… in fpm_children_bury()
254 …agement after %ld.%06d seconds from start", child->wp->config->name, (int) pid, tv2.tv_sec, (int) … in fpm_children_bury()
295 … "oops, unknown child (%d) exited %s. Please open a bug report (https://bugs.php.net).", pid, buf); in fpm_children_bury()
363 pid_t pid; in fpm_children_make() local
400 pid = fork(); in fpm_children_make()
402 switch (pid) { in fpm_children_make()
417 child->pid = pid; in fpm_children_make()
421 …og(is_debug ? ZLOG_DEBUG : ZLOG_NOTICE, "[pool %s] child %d started", wp->config->name, (int) pid); in fpm_children_make()