Searched refs:WNOHANG (Results 1 – 25 of 30) sorted by relevance
12
/external/chromium/base/ |
D | process_util_posix.cc | 77 pid_t ret_pid = HANDLE_EINTR(waitpid(handle, &status, WNOHANG)); in WaitpidWithTimeout() 98 ret_pid = HANDLE_EINTR(waitpid(handle, &status, WNOHANG)); in WaitpidWithTimeout() 238 pid_t pid = HANDLE_EINTR(waitpid(process_id, NULL, WNOHANG)); in KillProcess() 698 const pid_t result = HANDLE_EINTR(waitpid(handle, &status, WNOHANG)); in GetTerminationStatus()
|
/external/qemu/ |
D | iohandler.c | 158 if (waitpid(rec->pid, NULL, WNOHANG) == rec->pid) { in sigchld_bh_handler()
|
D | vl-android-ui.c | 181 waitpid(-1, NULL, WNOHANG); in sigchld_handler()
|
D | os-posix.c | 72 waitpid(-1, NULL, WNOHANG); in sigchld_handler()
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_symbolizer_linux.cc | 114 int exited_pid = waitpid(pid, &pid_status, WNOHANG); in StartSymbolizerSubprocess()
|
/external/e2fsprogs/misc/ |
D | logsave.c | 200 while (!(waitpid(pid, &status, WNOHANG ))) { in run_program()
|
D | fsck.c | 586 if ((pid == 0) && (flags & WNOHANG)) in wait_one() 682 if (noexecute && (flags & WNOHANG) && !(random() % 3)) in wait_many() 686 wait_flags = WNOHANG; in wait_many()
|
/external/dropbear/ |
D | svr-main.c | 336 while(waitpid(-1, NULL, WNOHANG) > 0); in sigchld_handler()
|
D | svr-chansession.c | 91 while ((pid = waitpid(-1, &status, WNOHANG)) > 0) { in sesssigchild_handler()
|
/external/mtpd/ |
D | mtpd.c | 220 if (signal == SIGCHLD && waitpid(pppd_pid, &status, WNOHANG) == pppd_pid in main()
|
/external/kernel-headers/original/linux/ |
D | wait.h | 4 #define WNOHANG 0x00000001 macro
|
/external/netperf/ |
D | netcpu_looper.c | 460 while(waitpid(-1, NULL, WNOHANG) > 0) { } in cpu_util_terminate()
|
D | netserver.c | 738 while(waitpid(-1, NULL, WNOHANG) > 0) { } in set_up_server()
|
/external/iproute2/misc/ |
D | rtacct.c | 408 while (children && waitpid(-1, &status, WNOHANG) > 0) in server_loop()
|
D | nstat.c | 417 while (children && waitpid(-1, &status, WNOHANG) > 0) in server_loop()
|
D | ifstat.c | 532 while (children && waitpid(-1, &status, WNOHANG) > 0) in server_loop()
|
/external/v8/src/ |
D | d8-posix.cc | 390 waitid(P_PID, pid, &child_info, WEXITED | WNOHANG | WNOWAIT); in WaitForChild()
|
/external/strace/ |
D | process.c | 1815 { WNOHANG, "WNOHANG" }, 2003 if (!(tcp->u_arg[flagarg] & WNOHANG)) { 2045 if (tcp->u_arg[flagarg] & WNOHANG) {
|
D | NEWS | 267 in waitpid calls with WNOHANG.
|
/external/openssh/ |
D | serverloop.c | 809 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || in collect_children()
|
D | auth-pam.c | 152 if (waitpid(cleanup_ctxt->pam_thread, &sshpam_thread_status, WNOHANG) in sshpam_sigchld_handler()
|
D | ssh.c | 1581 while ((pid = waitpid(-1, &status, WNOHANG)) > 0 || in main_sigchld_handler()
|
/external/libppp/src/ |
D | chat.c | 766 waitpid(pid, &stat, WNOHANG); in ExecStr()
|
/external/dnsmasq/src/ |
D | dnsmasq.c | 841 while ((p = waitpid(-1, NULL, WNOHANG)) != 0) in async_event()
|
/external/ppp/pppd/ |
D | main.c | 1800 while ((pid = waitpid(-1, &status, WNOHANG)) != -1 && pid != 0) { in reap_kids()
|
12