HomeSort by: relevance | last modified time | path
    Searched refs:sshpid (Results 1 - 4 of 4) sorted by relevancy

  /src/usr.sbin/puffs/mount_psshfs/
psshfs.c 431 pid_t *sshpid; local
435 sshpid = &pctx->sshpid;
439 sshpid = &pctx->sshpid_data;
466 *sshpid = pid;
fs.c 224 kill(pctx->sshpid, SIGTERM);
psshfs.h 159 pid_t sshpid; member in struct:psshfs_ctx
  /src/crypto/external/bsd/openssh/dist/
sftp.c 69 static volatile pid_t sshpid = -1; variable
213 pid = sshpid;
226 if (sshpid > 1) {
227 kill(sshpid, signo);
228 while (waitpid(sshpid, NULL, WUNTRACED) == -1 && errno == EINTR)
260 while ((pid = waitpid(sshpid, NULL, WNOHANG)) == -1 && errno == EINTR)
262 if (pid == sshpid) {
265 sshpid = -1;
2413 if ((sshpid = fork()) == -1)
2415 else if (sshpid == 0)
    [all...]

Completed in 54 milliseconds