Searched refs:pid (Results 1 – 5 of 5) sorted by relevance
/build/soong/cmd/path_interposer/ |
D | main.go | 195 pid, err := strconv.Atoi(string(fields[0])) 212 ret[pid] = procEntry{ 213 Pid: pid, 229 pid := os.Getpid() 231 entry, ok := procs[pid] 238 Pid: pid, 243 pid = entry.Ppid
|
/build/make/tools/makeparallel/ |
D | makeparallel.cpp | 358 static pid_t pid; in main() local 366 if (signal == SIGTERM && pid > 0) { in main() 367 kill(pid, signal); in main() 381 pid = fork(); in main() 382 if (pid < 0) { in main() 384 } else if (pid == 0) { in main() 408 ret = waitid(P_PID, pid, &status, WEXITED); in main()
|
/build/make/tools/atree/ |
D | fs.cpp | 153 pid_t pid = fork(); in strip_file() local 154 if (pid == -1) { in strip_file() 157 } else if (pid == 0) { in strip_file() 208 waitpid(pid, &status, 0); in strip_file()
|
/build/kati/ |
D | stats.go | 30 pid int member 93 if t.pid == 0 { 94 t.pid = os.Getpid() 99 t.pid,
|
D | fileutil.cc | 87 int pid; in RunCommand() local 88 if ((pid = vfork())) { in RunCommand() 92 int result = waitpid(pid, &status, WNOHANG); in RunCommand()
|