Searched refs:wait_pid (Results 1 - 5 of 5) sorted by relevance

/external/openssh/openbsd-compat/
H A Dbsd-waitpid.c36 pid_t wait_pid; local
46 wait_pid = wait4(pid, &statusp, options, NULL);
50 return (wait_pid);
H A Dbsd-nextstep.c36 pid_t wait_pid; local
39 wait_pid = wait(&statusp);
43 return (wait_pid);
/external/lldb/source/Plugins/Process/Linux/
H A DProcessMonitor.cpp1641 lldb::pid_t wait_pid = ::waitpid (-1*m_pid, &status, __WALL); local
1643 log->Printf ("ProcessMonitor::%s(bp) waitpid, pid = %" PRIu64 ", status = %d", __FUNCTION__, wait_pid, status);
1645 if (wait_pid == -1)
1658 m_process->SendMessage(ProcessMessage::Exit(wait_pid, WEXITSTATUS(status)));
1659 if (wait_pid == tid)
1666 if (!GetSignalInfo(wait_pid, &info, ptrace_err))
1681 log->Printf ("ProcessMonitor::%s(bp) handling event, tid == %" PRIu64, __FUNCTION__, wait_pid);
1685 message = MonitorSIGTRAP(this, &info, wait_pid);
1687 message = MonitorSignal(this, &info, wait_pid);
1689 POSIXThread *thread = static_cast<POSIXThread*>(m_process->GetThreadList().FindThreadByID(wait_pid)
[all...]
/external/lldb/source/Host/common/
H A DHost.cpp163 log->Printf("%s ::wait_pid (pid = %" PRIu64 ", &status, options = %i)...", function, pid, options);
168 const lldb::pid_t wait_pid = ::waitpid (-1*pid, &status, options); local
171 if (wait_pid == -1)
182 else if (wait_pid > 0)
203 if (wait_pid == pid) {
221 wait_pid,
233 callback_return = callback (callback_baton, wait_pid, exited, signal, exit_status);
236 if (exited && wait_pid == pid)
/external/openssh/
H A Dserverloop.c565 pid_t wait_pid; /* pid returned by wait(). */ local
760 while ((wait_pid = waitpid(-1, &wait_status, 0)) < 0)
763 if (wait_pid != pid)
765 (long)wait_pid, (long)pid);

Completed in 290 milliseconds