Searched defs:TaskQueue (Results 1 – 1 of 1) sorted by relevance
48 struct TaskQueue { struct49 Inlist<Task> taskDeque;50 mutex mtx;51 condition_variable ready;52 bool done = false;54 bool tryPop(Task** task) in tryPop()62 bool tryPush(Task* task) in tryPush()73 void complete() in complete()82 bool pop(Task** task) in pop()96 void push(Task* task) in push()