mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-22 00:35:15 +00:00
346f9b9421
- Rename to sysutils/liburcu (according to upstream) - Update MOVED - Remove userspace-rcu from sysutils/Makefile - Add liburcu to sysutils/Makefile - Update dns/knot LIB_DEPENDS dependency While I'm here: - Update to 0.7.6 - Add CONFIGURE_ARGS for correct --docdir - Add regression-test: target - Update COMMENT - Re-order USE_* section - pkg-descr: Tab->space in WWW: - Update WWW: URL Changes: 2013-01-09 Userspace RCU 0.7.6 * Discourage use of pthread_atfork() for call_rcu handlers * Fix call_rcu fork handling * test: fork handling * Fix TLS detection: test with linker, add --disable-compiler-tls * Cleanup: cast pthread_self() return value to unsigned long * Fallback mechanism not working on platform where TLS is unsupported PR: ports/179358 Approved by: Leo Vandewoestijne <freebsd@dns-lab.com> (maintainer)
10 lines
406 B
Plaintext
10 lines
406 B
Plaintext
liburcu is a LGPLv2.1 userspace RCU (read-copy-update)
|
|
library. This data synchronization library provides
|
|
read-side access which scales linearly with the number
|
|
of cores. It does so by allowing multiples copies of a
|
|
given data structure to live at the same time, and by
|
|
monitoring the data structure accesses to detect grace
|
|
periods after which memory reclamation is possible.
|
|
|
|
WWW: http://lttng.org/urcu
|