| 139 | CHECK_EQ(0, pthread_mutex_init(&_mutex, NULL)); |
| 140 | } |
| 141 | ~CachedReader() { |
| 142 | pthread_mutex_destroy(&_mutex); |
| 143 | } |
| 144 | |
| 145 | // NOTE: may return a volatile value that may be overwritten at any time. |
| 146 | // This is acceptable right now. Both 32-bit and 64-bit numbers are atomic |
nothing calls this directly
no test coverage detected