Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DThreadPool.cpp57 *CurrentThreadTaskGroups = nullptr; variable
95 if (CurrentThreadTaskGroups == nullptr) in processTasks()
96 CurrentThreadTaskGroups = new std::vector<ThreadPoolTaskGroup *>; in processTasks()
97 CurrentThreadTaskGroups->push_back(GroupOfTask); in processTasks()
104 CurrentThreadTaskGroups->pop_back(); in processTasks()
105 if (CurrentThreadTaskGroups->empty()) { in processTasks()
106 delete CurrentThreadTaskGroups; in processTasks()
107 CurrentThreadTaskGroups = nullptr; in processTasks()
162 assert(CurrentThreadTaskGroups == nullptr || in wait()
163 !llvm::is_contained(*CurrentThreadTaskGroups, &Group)); in wait()