| 30 | } |
| 31 | |
| 32 | void TUncheckedReaderWriterSpinLock::AcquireWriterSlow() noexcept |
| 33 | { |
| 34 | TSpinWait spinWait(Location_, ESpinLockActivityKind::Write); |
| 35 | while (!TryAndTryAcquireWriter()) { |
| 36 | spinWait.Wait(); |
| 37 | } |
| 38 | } |
| 39 | |
| 40 | //////////////////////////////////////////////////////////////////////////////// |
| 41 |