Home
last modified time | relevance | path

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

/freebsd/crypto/openssh/
H A Dsftp.c80 static volatile pid_t sshpid = -1; variable
225 pid = sshpid; in killchild()
238 if (sshpid > 1) { in suspchild()
239 kill(sshpid, signo); in suspchild()
240 while (waitpid(sshpid, NULL, WUNTRACED) == -1 && errno == EINTR) in suspchild()
272 while ((pid = waitpid(sshpid, NULL, WNOHANG)) == -1 && errno == EINTR) in sigchld_handler()
274 if (pid == sshpid) { in sigchld_handler()
277 sshpid = -1; in sigchld_handler()
2384 if ((sshpid = fork()) == -1) in connect_to_server()
2386 else if (sshpid == 0) { in connect_to_server()
[all …]