| 112 | class InputJobQueue : public JobQueue { |
| 113 | public: |
| 114 | InputJobQueue() { |
| 115 | isTerminate = false; |
| 116 | underPushing = false; |
| 117 | pushedSize = 0; |
| 118 | } |
| 119 | |
| 120 | void popFront(JOB &d) { |
| 121 | JobQueue::lock(); |
nothing calls this directly
no outgoing calls
no test coverage detected