| 30 | class Mutex { |
| 31 | public: |
| 32 | Mutex(bool factice = false) : _factice(factice) {} |
| 33 | void lock() { if (_factice) return; _mutex.lock(); } |
| 34 | void unlock() { if (_factice) return; _mutex.unlock(); } |
| 35 |
nothing calls this directly
no outgoing calls
no test coverage detected