XRCU is a library that provides efficient lock-less synchronization for read-mostly tasks and structures.
|
%!s(int64=3) %!d(string=hai) anos | |
---|---|---|
docs | %!s(int64=4) %!d(string=hai) anos | |
tests | %!s(int64=5) %!d(string=hai) anos | |
.gitignore | %!s(int64=6) %!d(string=hai) anos | |
Changes | %!s(int64=6) %!d(string=hai) anos | |
LICENSE | %!s(int64=6) %!d(string=hai) anos | |
Makefile | %!s(int64=5) %!d(string=hai) anos | |
README.md | %!s(int64=3) %!d(string=hai) anos | |
VERSION | %!s(int64=6) %!d(string=hai) anos | |
configure | %!s(int64=6) %!d(string=hai) anos | |
hash_table.cpp | %!s(int64=4) %!d(string=hai) anos | |
hash_table.hpp | %!s(int64=3) %!d(string=hai) anos | |
lwlock.cpp | %!s(int64=4) %!d(string=hai) anos | |
lwlock.hpp | %!s(int64=4) %!d(string=hai) anos | |
optional.hpp | %!s(int64=4) %!d(string=hai) anos | |
queue.cpp | %!s(int64=4) %!d(string=hai) anos | |
queue.hpp | %!s(int64=3) %!d(string=hai) anos | |
skip_list.cpp | %!s(int64=3) %!d(string=hai) anos | |
skip_list.hpp | %!s(int64=3) %!d(string=hai) anos | |
stack.cpp | %!s(int64=4) %!d(string=hai) anos | |
stack.hpp | %!s(int64=4) %!d(string=hai) anos | |
utils.cpp | %!s(int64=4) %!d(string=hai) anos | |
utils.hpp | %!s(int64=4) %!d(string=hai) anos | |
version.hpp | %!s(int64=6) %!d(string=hai) anos | |
xatomic.hpp | %!s(int64=4) %!d(string=hai) anos | |
xrcu.cpp | %!s(int64=4) %!d(string=hai) anos | |
xrcu.hpp | %!s(int64=4) %!d(string=hai) anos |
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.