| 42 | } |
| 43 | |
| 44 | TRWMutex::TImpl::~TImpl() { |
| 45 | Y_ABORT_UNLESS(State_ == 0, "failure, State_ != 0"); |
| 46 | Y_ABORT_UNLESS(BlockedWriters_ == 0, "failure, BlockedWriters_ != 0"); |
| 47 | } |
| 48 | |
| 49 | void TRWMutex::TImpl::AcquireRead() noexcept { |
| 50 | with_lock (Lock_) { |
nothing calls this directly
no test coverage detected