HomeSort by: relevance | last modified time | path
    Searched defs:pids (Results 1 - 3 of 3) sorted by relevancy

  /src/libexec/ftpd/
popen.c 102 static int *pids; variable in typeref:typename:int *
121 if (!pids) {
124 if ((pids = (int *)malloc((unsigned int)(fds * sizeof(int)))) == NULL)
126 memset(pids, 0, fds * sizeof(int));
209 pids[fileno(iop)] = pid;
228 if (pids == 0 || pids[fdes = fileno(iop)] == 0)
236 while ((pid = waitpid(pids[fdes], &status, 0)) < 0 && errno == EINTR)
239 pids[fdes] = 0;
conf.c 879 * /var/run/ftpd.pids-<class>
892 pid_t *pids, mypid; local in function:count_users
898 pids = NULL;
912 if ((pids = calloc(sb.st_size + sizeof(pid_t), 1)) == NULL)
915 scount = read(fd, pids, sb.st_size);
922 if (pids[i] == 0)
924 if (kill(pids[i], 0) == -1 && errno != EPERM) {
926 pids[i] = mypid;
936 if (pids[last] != 0)
938 pids[last] = mypid
    [all...]
  /src/bin/pax/
pax.c 103 int pids; /* preserve file uid/gid */ variable in typeref:typename:int

Completed in 13 milliseconds