Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lld/COFF/
H A DDriver.h159 std::list<std::function<void()>> taskQueue; variable
H A DDriver.cpp1038 taskQueue.push_back(std::move(task)); in enqueueTask()
1044 bool didWork = !taskQueue.empty(); in run()
1045 while (!taskQueue.empty()) { in run()
1046 taskQueue.front()(); in run()
1047 taskQueue.pop_front(); in run()