Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Unlocks the reader-writer lock based on who locked it, reader or writer.
_CRTIMP void unlock();
Remarks
If there are writers waiting on the lock, the release of the lock will always go to the next writer in FIFO order. This lock is biased towards writers and can starve readers under a continuous load of writers.
Requirements
Header: concrt.h
Namespace: Concurrency
See Also
Reference
reader_writer_lock::lock Method
reader_writer_lock::lock_read Method