Lines Matching defs:pid
83 pid_t pid, cpid;
88 pid = fork();
89 if (pid != 0) {
99 cpid = waitpid(pid, &status, 0);
108 kill(pid, SIGKILL);
146 pid_t pid;
155 file = talloc_asprintf(NULL, "%s/%s.pid", path, name);
177 /* let's check the pid */
178 pid = (pid_t)atoi(pid_str);
179 if (pid != 0) {
181 ret = kill(pid, 0);
524 DEBUG(SSSDBG_FATAL_FAILURE, "Error creating pidfile: %s/%s.pid! "