Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stoptheworld_linux_libcdep.cc91 SuspendedThreadsListLinux() { thread_ids_.reserve(1024); } in SuspendedThreadsListLinux()
103 InternalMmapVector<tid_t> thread_ids_; member in __sanitizer::SuspendedThreadsListLinux
516 CHECK_LT(index, thread_ids_.size()); in GetThreadID()
517 return thread_ids_[index]; in GetThreadID()
521 return thread_ids_.size(); in ThreadCount()
525 for (uptr i = 0; i < thread_ids_.size(); i++) { in ContainsTid()
526 if (thread_ids_[i] == thread_id) return true; in ContainsTid()
532 thread_ids_.push_back(tid); in Append()