| 14 | //////////////////////////////////////////////////////////////////////////////// |
| 15 | |
| 16 | void TUncheckedReaderWriterSpinLock::AcquireReaderSlow() noexcept |
| 17 | { |
| 18 | TSpinWait spinWait(Location_, ESpinLockActivityKind::Read); |
| 19 | while (!TryAndTryAcquireReader()) { |
| 20 | spinWait.Wait(); |
| 21 | } |
| 22 | } |
| 23 | |
| 24 | void TUncheckedReaderWriterSpinLock::AcquireReaderForkFriendlySlow() noexcept |
| 25 | { |