Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/Support/
H A DThreadPool.cpp55 *CurrentThreadTaskGroups = nullptr; variable
93 if (CurrentThreadTaskGroups == nullptr) in processTasks()
94 CurrentThreadTaskGroups = new std::vector<ThreadPoolTaskGroup *>; in processTasks()
95 CurrentThreadTaskGroups->push_back(GroupOfTask); in processTasks()
102 CurrentThreadTaskGroups->pop_back(); in processTasks()
103 if (CurrentThreadTaskGroups->empty()) { in processTasks()
104 delete CurrentThreadTaskGroups; in processTasks()
105 CurrentThreadTaskGroups = nullptr; in processTasks()
160 assert(CurrentThreadTaskGroups == nullptr || in wait()
161 !llvm::is_contained(*CurrentThreadTaskGroups, &Group)); in wait()