mirror of
https://git.yoctoproject.org/poky
synced 2026-03-10 01:09:40 +01:00
2022-08-18 Userspace RCU 0.13.2 * Revert "Fix: remove type constness in URCU_FORCE_CAST's C++ version" * Fix: futex.h: include headers outside extern C * Fix: add missing unused attribute to _rcu_dereference * Fix: change method used by _rcu_dereference to strip type constness * Fix: remove type constness in URCU_FORCE_CAST's C++ version * Move extern "C" down in include/urcu/urcu-bp.h * fix: ifdef linux specific cpu count compat * Set git-review branch to stable-0.13 * fix: sysconf(_SC_NPROCESSORS_CONF) can be less than max cpu id * Fix: revise obsolete command in README.md * Fix: workqueue: remove unused variable "ret" * Fix: urcu-qsbr: futex wait: handle spurious futex wakeups * Fix: urcu: futex wait: handle spurious futex wakeups * Fix: urcu-wait: futex wait: handle spurious futex wakeups * Fix: defer_rcu: futex wait: handle spurious futex wakeups * Fix: call_rcu: futex wait: handle spurious futex wakeups * Fix: workqueue: futex wait: handle spurious futex wakeups * Fix: Use %lu rather than %ld to print count (From OE-Core rev: 2852ebcba6c718640b306adfd33907411ac02d21) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> (cherry picked from commit b9ce9d9ab53baab7ba84187d17b34e48ff9eb16e) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
25 lines
988 B
BlitzBasic
25 lines
988 B
BlitzBasic
SUMMARY = "Userspace RCU (read-copy-update) library"
|
|
DESCRIPTION = "A userspace RCU (read-copy-update) library. This data \
|
|
synchronization library provides read-side access which scales linearly \
|
|
with the number of cores. "
|
|
HOMEPAGE = "http://lttng.org/urcu"
|
|
BUGTRACKER = "http://lttng.org/project/issues"
|
|
|
|
LICENSE = "LGPL-2.1-or-later & MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=e548d28737289d75a8f1e01ba2fd7825 \
|
|
file://include/urcu/urcu.h;beginline=4;endline=32;md5=4de0d68d3a997643715036d2209ae1d9 \
|
|
file://include/urcu/uatomic/x86.h;beginline=4;endline=21;md5=58e50bbd8a2f073bb5500e6554af0d0b"
|
|
|
|
SRC_URI = "http://lttng.org/files/urcu/userspace-rcu-${PV}.tar.bz2"
|
|
|
|
SRC_URI[sha256sum] = "1213fd9f1b0b74da7de2bb74335b76098db9738fec5d3cdc07c0c524f34fc032"
|
|
|
|
S = "${WORKDIR}/userspace-rcu-${PV}"
|
|
inherit autotools multilib_header
|
|
|
|
CPPFLAGS:append:riscv64 = " -pthread -D_REENTRANT"
|
|
|
|
do_install:append() {
|
|
oe_multilib_header urcu/config.h
|
|
}
|