Searched defs:JobQueue (Results 1 – 3 of 3) sorted by relevance
251 struct JobQueue { struct252 std::queue<FuzzJob *> Qu;253 std::mutex Mu;254 std::condition_variable Cv;256 void Push(FuzzJob *Job) { in Push()263 FuzzJob *Pop() { in Pop()
35 } JobQueue; typedef