| 150 | // ========================================================================= |
| 151 | |
| 152 | struct ContentionArgs { |
| 153 | Mutex* mtx; |
| 154 | std::atomic<int>* counter; |
| 155 | }; |
| 156 | |
| 157 | void contention_worker(void* arg) { |
| 158 | auto* ctx = reinterpret_cast<ContentionArgs*>(arg); |
nothing calls this directly
no outgoing calls
no test coverage detected