Home
last modified time | relevance | path

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

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