| 1454 | GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, nullptr)); |
| 1455 | } |
| 1456 | ~Notification() { |
| 1457 | pthread_mutex_destroy(&mutex_); |
| 1458 | } |
| 1459 | |
| 1460 | // Notifies all threads created with this notification to start. Must |
| 1461 | // be called from the controller thread. |
nothing calls this directly
no outgoing calls
no test coverage detected