Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lld/COFF/
H A DDriver.h193 std::list<std::function<void()>> taskQueue; variable
H A DDriver.cpp1052 taskQueue.push_back(std::move(task)); in enqueueTask()
1059 bool didWork = !taskQueue.empty(); in run()
1060 while (!taskQueue.empty()) { in run()
1061 taskQueue.front()(); in run()
1062 taskQueue.pop_front(); in run()