summaryrefslogtreecommitdiff
path: root/src/lib/rw_lock.c
Commit message (Collapse)AuthorAgeFilesLines
* lib: fixed a bug in the rw_lockdimitri staessens2016-05-141-3/+5
| | | | Locking the main mutex should happen while the counter is locked.
* lib: implementation of read/write locksdimitri staessens2016-05-131-0/+125
This adds read/write locks, allowing for concurrent reads on the locked datastructure. This is needed for the fast path.