| 2309 | class Notification { |
| 2310 | public: |
| 2311 | Notification() : notified_(false) { |
| 2312 | GTEST_CHECK_POSIX_SUCCESS_(pthread_mutex_init(&mutex_, NULL)); |
| 2313 | } |
| 2314 | ~Notification() { |
| 2315 | pthread_mutex_destroy(&mutex_); |
| 2316 | } |
nothing calls this directly
no outgoing calls
no test coverage detected