| 61 | } |
| 62 | |
| 63 | void CancelProcessing(){ |
| 64 | std::lock_guard<std::mutex> lck (mtxStop); |
| 65 | stopProcessing = true; |
| 66 | } |
| 67 | |
| 68 | bool ShouldStop(){ |
| 69 | std::lock_guard<std::mutex> lck (mtxStop); |
nothing calls this directly
no outgoing calls
no test coverage detected