Searched defs:JobQueue (Results 1 – 2 of 2) sorted by relevance
280 struct JobQueue { struct281 std::queue<FuzzJob *> Qu;282 std::mutex Mu;283 std::condition_variable Cv;285 void Push(FuzzJob *Job) { in Push()292 FuzzJob *Pop() { in Pop()
35 } JobQueue; typedef