Home
last modified time | relevance | path

Searched refs:wait_pid (Results 1 – 6 of 6) sorted by relevance

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