HomeSort by relevance Sort by last modified time
    Searched refs:wait_pid (Results 1 - 2 of 2) sorted by null

  /external/lldb/source/Plugins/Process/Linux/
ProcessMonitor.cpp 1641 lldb::pid_t wait_pid = ::waitpid (-1*m_pid, &status, __WALL); local
    [all...]
  /external/lldb/source/Host/common/
Host.cpp 163 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)
    [all...]

Completed in 125 milliseconds