| 32 | class SimuFutex { |
| 33 | public: |
| 34 | SimuFutex() : counts(0) |
| 35 | , ref(0) { |
| 36 | pthread_mutex_init(&lock, NULL); |
| 37 | pthread_cond_init(&cond, NULL); |
| 38 | } |
| 39 | ~SimuFutex() { |
| 40 | pthread_mutex_destroy(&lock); |
| 41 | pthread_cond_destroy(&cond); |
nothing calls this directly
no test coverage detected