Home
last modified time | relevance | path

Searched refs:command_pid (Results 1 – 2 of 2) sorted by relevance

/openbsd/src/gnu/usr.bin/cvs/src/
Dserver.c2505 static pid_t command_pid; variable
2513 if (command_pid > 0)
2514 kill (command_pid, SIGTERM);
2746 command_pid = -1;
2841 command_pid = fork ();
2842 if (command_pid < 0)
2848 if (command_pid == 0)
3269 while (command_pid > 0)
3273 waited_pid = waitpid (command_pid, &status, 0);
3311 if (waited_pid == command_pid)
[all …]
DChangeLog-93952567 (server_cleanup): If command_pid is nonzero, wait for it to die,