reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

projects/compiler-rt/lib/sanitizer_common/sanitizer_stoptheworld_linux_libcdep.cpp
  142   if (suspended_threads_list_.ContainsTid(tid)) return false;
  144   if (internal_iserror(internal_ptrace(PTRACE_ATTACH, tid, nullptr, nullptr),
  148     VReport(1, "Could not attach to thread %zu (errno %d).\n", (uptr)tid,
  152     VReport(2, "Attached to thread %zu.\n", (uptr)tid);
  165       HANDLE_EINTR(waitpid_status, internal_waitpid(tid, &status, __WALL));
  171                 (uptr)tid, wperrno);
  172         internal_ptrace(PTRACE_DETACH, tid, nullptr, nullptr);
  176         internal_ptrace(PTRACE_CONT, tid, nullptr,
  182     suspended_threads_list_.Append(tid);