| 446 | void notify_one(); |
| 447 | #else |
| 448 | inline void notify_one() |
| 449 | { |
| 450 | pthread_cond_signal(&mHandle); |
| 451 | } |
| 452 | #endif |
| 453 | |
| 454 | /// Notify all threads that are waiting for the condition. |
nothing calls this directly
no outgoing calls
no test coverage detected