A Read Write Lock. This is used to synchronize multiple [Thread]s. This guarantees that only one thread can ever acquire the write lock at a time, and gives any number of threads read access in the meantime. An RWLock can be used to protect a critical section; however, be careful to avoid deadlocks.
</description>
<tutorials>
</tutorials>
<methods>
<methodname="read_lock">
<returntype="void"/>
<description>
Locks this [RWLock] for read access, blocks until it is unlocked by the current owner.
[b]Note:[/b] This function returns without blocking if the thread already has ownership of the rwlock.
</description>
</method>
<methodname="read_try_lock">
<returntype="int"enum="Error"/>
<description>
Tries locking this [RWLock] for read access, but does not block. Returns [constant OK] on success, [constant ERR_BUSY] otherwise.
[b]Note:[/b] This function returns [constant OK] if the thread already has ownership of the rwlock.
</description>
</method>
<methodname="read_unlock">
<returntype="void"/>
<description>
Unlocks this [RWLock] for read access, leaving it to other threads.
[b]Note:[/b] If a thread called [method lock] or [method try_lock] multiple times while already having ownership of the rwlock, it must also call [method unlock] the same number of times in order to unlock it correctly.
</description>
</method>
<methodname="write_lock">
<returntype="void"/>
<description>
Locks this [RWLock] for write access, blocks until it is unlocked by the current owner.