| 1451 | class Notification { |
| 1452 | public: |
| 1453 | Notification() : notified_(false) { |
| 1454 | GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, nullptr)); |
| 1455 | } |
| 1456 | ~Notification() { |
| 1457 | pthread_mutex_destroy(&mutex_); |
| 1458 | } |
nothing calls this directly
no outgoing calls
no test coverage detected