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

/freebsd-9.3-release/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-9.3-release/usr.sbin/cron/crontab/
H A Dcrontab.c59 static PID_T Pid; variable
91 Pid = getpid();
106 log_it(RealUser, Pid, "AUTH", "crontab command not allowed");
263 log_it(RealUser, Pid, "LIST", User);
293 log_it(RealUser, Pid, "DELETE", User);
327 log_it(RealUser, Pid, "BEGIN EDIT", User);
491 log_it(RealUser, Pid, "END EDIT", User);
513 (void) snprintf(n, sizeof(n), "tmp.%d", Pid);
609 log_it(RealUser, Pid, "REPLACE", User);
/freebsd-9.3-release/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 57 milliseconds