XRCU is a library that provides efficient lock-less synchronization for read-mostly tasks and structures.
Luciano Lo Giudice a98f1f7caa Simplify access to hash table vector | 3 vuotta sitten | |
---|---|---|
docs | 4 vuotta sitten | |
tests | 4 vuotta sitten | |
.gitignore | 5 vuotta sitten | |
Changes | 5 vuotta sitten | |
LICENSE | 6 vuotta sitten | |
Makefile | 4 vuotta sitten | |
README.md | 3 vuotta sitten | |
VERSION | 5 vuotta sitten | |
configure | 5 vuotta sitten | |
hash_table.cpp | 4 vuotta sitten | |
hash_table.hpp | 3 vuotta sitten | |
lwlock.cpp | 4 vuotta sitten | |
lwlock.hpp | 4 vuotta sitten | |
optional.hpp | 4 vuotta sitten | |
queue.cpp | 4 vuotta sitten | |
queue.hpp | 3 vuotta sitten | |
skip_list.cpp | 3 vuotta sitten | |
skip_list.hpp | 3 vuotta sitten | |
stack.cpp | 4 vuotta sitten | |
stack.hpp | 4 vuotta sitten | |
utils.cpp | 4 vuotta sitten | |
utils.hpp | 4 vuotta sitten | |
version.hpp | 5 vuotta sitten | |
xatomic.hpp | 4 vuotta sitten | |
xrcu.cpp | 4 vuotta sitten | |
xrcu.hpp | 4 vuotta sitten |
This library implements efficient lockless synchronization for read-mostly tasks. In addition, it provides several data lockless data structures that make use of said synchronization, with an API that closely resembles the one used in C++'s STL. These data structures include: stacks, queues (multiple producer, multiple consumer), skip lists and hash tables.
As with most GNU packages, xrcu follows a very simple convention:
./configure
make
make install
Even though the data structures are generic and thus implemented almost completely in single headers, there's still the need to link with this library (-lxrcu) to pull the runtime.
See docs/xrcu.html for a full overview of the design and its API.
Luciano Lo Giudice
Agustina Arzille
Licensed under the GPLv3.