Searched refs:Pid (Results 1 - 3 of 3) sorted by relevance

/freebsd-10-stable/contrib/llvm/include/llvm/Support/
H A DProgram.h47 ProcessId Pid; member in struct:llvm::sys::ProcessInfo
127 /// \returns A \see ProcessInfo struct with Pid set to:
/freebsd-10-stable/usr.sbin/cron/crontab/
H A Dcrontab.c60 static PID_T Pid; variable
93 Pid = getpid();
108 log_it(RealUser, Pid, "AUTH", "crontab command not allowed");
268 log_it(RealUser, Pid, "LIST", User);
298 log_it(RealUser, Pid, "DELETE", User);
332 log_it(RealUser, Pid, "BEGIN EDIT", User);
496 log_it(RealUser, Pid, "END EDIT", User);
518 (void) snprintf(n, sizeof(n), "tmp.%d", Pid);
614 log_it(RealUser, Pid, "REPLACE", User);
/freebsd-10-stable/contrib/llvm/lib/Support/Unix/
H A DProgram.inc53 ProcessInfo::ProcessInfo() : Pid(0), ReturnCode(0) {}
254 PI.Pid = PID;
318 PI.Pid = child;
329 assert(PI.Pid && "invalid pid to wait on, process not started?");
332 pid_t ChildPid = PI.Pid;
351 WaitResult.Pid = waitpid(ChildPid, &status, WaitPidOptions);
352 if (WaitResult.Pid != PI.Pid) {
353 if (WaitResult.Pid == 0) {
359 kill(PI.Pid, SIGKIL
[all...]

Completed in 80 milliseconds