with-write-lock ( lock quot -- )
Locks ยป Read-write locks

Prev:with-read-lock ( lock quot -- )
Next:with-read-lock-timeout ( lock timeout quot -- )


Vocabulary
concurrency.locks

Inputs
locka lock
quota quotation


Outputs
None

Word description
Calls the quotation, ensuring that no other thread is holding a read or write lock at the same time. If another thread is holding a read or write lock, blocks until the thread releases the lock.

Definition