libcosmos
Linux C++ System Programming Library
|
This type represents a pthread read-write lock. More...
#include <RWLock.hxx>
Public Member Functions | |
void | readlock () const |
void | writelock () const |
void | unlock () const |
Unlock a previously obtained read or write lock. | |
Protected Attributes | |
pthread_rwlock_t | m_prwlock |
This type represents a pthread read-write lock.
A read-write lock can be locked in parallel for reading but only by one thread for writing at the same time. This is helpful if you got data that is updated rarely but read often.
Only the most basic operations are provided by now. For more information please refer to the POSIX man pages.
Definition at line 24 of file RWLock.hxx.
|
inline |
Definition at line 30 of file RWLock.hxx.
|
inline |
Definition at line 36 of file RWLock.hxx.
|
inline |
Definition at line 43 of file RWLock.hxx.
|
inline |
Unlock a previously obtained read or write lock.
Definition at line 56 of file RWLock.hxx.
|
inline |
Definition at line 49 of file RWLock.hxx.
|
mutableprotected |
Definition at line 65 of file RWLock.hxx.