XRCU is a library that provides efficient lock-less synchronization for read-mostly tasks and structures.
|
пре 3 година | |
---|---|---|
docs | пре 4 година | |
tests | пре 5 година | |
.gitignore | пре 6 година | |
Changes | пре 6 година | |
LICENSE | пре 6 година | |
Makefile | пре 5 година | |
README.md | пре 3 година | |
VERSION | пре 6 година | |
configure | пре 6 година | |
hash_table.cpp | пре 4 година | |
hash_table.hpp | пре 3 година | |
lwlock.cpp | пре 4 година | |
lwlock.hpp | пре 4 година | |
optional.hpp | пре 4 година | |
queue.cpp | пре 4 година | |
queue.hpp | пре 3 година | |
skip_list.cpp | пре 3 година | |
skip_list.hpp | пре 3 година | |
stack.cpp | пре 4 година | |
stack.hpp | пре 4 година | |
utils.cpp | пре 4 година | |
utils.hpp | пре 4 година | |
version.hpp | пре 6 година | |
xatomic.hpp | пре 4 година | |
xrcu.cpp | пре 4 година | |
xrcu.hpp | пре 4 година |
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.