NXRwUnlock

Unlocks the specified reader-writer lock.

Library:LibC
Classification:NKS
Service:Synchronization

Syntax

  #include <nks/synch.h>
   
  void NXRwUnlock (
     NXRwLock_t  *lock);
  

Parameters

lock

(IN) Points to the reader-writer lock to unlock.

Remarks

No assumptions can be made about the order in which threads waiting for a reader/writer lock will acquire the lock. That is, the reader/writer lock is not guaranteed to be FIFO.

See Also