HomeSort by: relevance | last modified time | path
    Searched refs:ThreadLister (Results 1 - 4 of 4) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_linux.h 78 class ThreadLister {
80 explicit ThreadLister(pid_t pid);
81 ~ThreadLister();
sanitizer_stoptheworld_linux_libcdep.cc 211 ThreadLister thread_lister(pid_);
218 case ThreadLister::Error:
221 case ThreadLister::Incomplete:
224 case ThreadLister::Ok:
sanitizer_linux.cc 916 // ThreadLister implementation.
917 ThreadLister::ThreadLister(pid_t pid) : pid_(pid), buffer_(4096) {
927 ThreadLister::Result ThreadLister::ListThreads(
982 bool ThreadLister::IsAlive(int tid) {
998 ThreadLister::~ThreadLister() {
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_linux_test.cc 123 static std::vector<tid_t> ReadTidsToVector(ThreadLister *thread_lister) {
141 // ThreadLister's output should include the current thread's TID and the TID of
145 ThreadLister thread_lister(getpid());
152 ThreadLister thread_lister(getpid());
154 // Run the loop body twice, because ThreadLister might behave differently if
162 // If new threads have spawned during ThreadLister object's lifetime, calling
163 // relisting should cause ThreadLister to recognize their existence.
165 ThreadLister thread_lister(getpid());

Completed in 14 milliseconds