Home | History | Annotate | Download | only in src

Lines Matching defs:pid

146   explicit ZombieProtector(int pid): pid_(pid) { }
366 int pid,
378 waitid(P_PID, pid, &child_info, WEXITED | WNOHANG | WNOWAIT);
385 kill(pid, SIGINT);
411 waitpid(pid, &child_status, 0); // We hang here if the child doesn't exit.
488 pid_t pid = fork();
489 if (pid == 0) { // Child process.
495 ZombieProtector child_waiter(pid);
509 kill(pid, SIGINT); // On timeout, kill the subprocess.
515 pid,