Files
bpfire/lfs/liburcu
Adolf Belka fe9264e588 liburcu: Update to version 0.14.0
- Update from version 0.13.2 to 0.14.0
- Update of rootfile
- Changelog
2023-02-14 Userspace RCU 0.14.0
	* Fix: urcu-bp: only teardown call-rcu worker in destructor
	* Fix: rculfhash: urcu_die() takes positive error value
	* Fix: call_rcu: teardown default call_rcu worker on application exit
	* Fix: join worker thread in call_rcu_data_free
	* Docs: clarify grace period polling API
	* Document grace period polling in rcu-api.md
	* Implement poll rcu stress test in rcutorture
	* urcu-memb,mb,signal: Implement grace period polling
	* Fix: auto-resize hash table destroy deadlock
	* Fix building on MSYS2
	* rculfhash: Include rculfhash-internal.h from local directory
	* Remove "Darwin" from "should also work on list"
	* Merge branch 'adah1972-improve-md'
	* Add semicolons at the end of function prototypes
	* Wrap a file name in backticks
	* Wrap command-line options in backticks
	* Fix a wrong format
	* Wrap URLs in angle brackets
	* Fix Markdown issues
	* Fix: Always check pthread_create for failures
	* Disable signals in URCU background threads
	* 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
	* Add unit tests for possible_cpus_array_len
	* 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
	* Update ABI definition files
	* Bump version current and age
	* alpha: allocate membarrier system call number
	* Bump version to 0.14.0-pre
	* Improved test framework
	* rculfhash: introduce cds_lfht_node_init_deleted
	* Fix: changelog: v0.13.0 was released in 2021
	* cleanup: i386 arch detection
	* fix: properly detect 'cmpxchg' on x86-32
	* fix: use urcu-tls compat with c++ compiler
	* Fix typo
	* fix: remove autoconf features default value in help message
	* fix: add missing pkgconfig file for memb flavour lib
	* Cleanup: Tests: Remove useless pre-C99 compatibility code from tap.h
	* Document C99 and C++11 requirement in README.md
	* Always use '__thread' for Thread local storage except on MSVC
	* Fix: powerpc32: transparent unions alter calling convention
	* fix: don't use C++ thread_local on MacOs
	* wfcqueue API: implement overloaded wrappers with templates
	* wfcqueue: combine C++ API cds_wfcq_head_cast with overloading
	* wfstack C++ API: implement overloaded wrappers with templates
	* lfstack C++ API: implement overloaded wrappers with templates
	* wfstack: combine C++ API cds_wfs_stack_cast with overloading
	* lfstack: combine C++ API cds_lfs_stack_cast with overloading
	* fix: test_build tap plan
	* Test C++ build of list head init
	* Fix order of initializers in CDS_LIST_HEAD_INIT
	* unit tests: test wfcqueue, wfstack, lfstack empty check functions in C++
	* wfcqueue: implement C++ API based on function overloading
	* wfstack: implement C++ API based on function overloading
	* lfstack: implement C++ API based on function overloading
	* Fix tap.h: remove extra semicolon in pass/fail macros
	* Add C++ build tests
	* Build and run regression and unit tests as C++ programs
	* Add --enable-Werror configure switch
	* Add `urcu_posix_assert()` as `assert()` replacement
	* Rename `urcu_assert()` to `urcu_assert_debug()`
	* cleanup: spelling fixes in comments
	* Make temporary variable in _rcu_dereference non-const
	* (tls-ie2) Fix: x86 and s390: uatomic __hp() macro C++ support
	* Fix: x86 and s390: uatomic __hp() macro clang support
	* Fix: x86 and s390 uatomic: __hp() macro warning with gcc 11

Signed-off-by: Adolf Belka <adolf.belka@ipfire.org>
2023-03-05 15:13:24 +00:00

85 lines
3.2 KiB
Plaintext

###############################################################################
# #
# IPFire.org - A linux based firewall #
# Copyright (C) 2007-2023 IPFire Team <info@ipfire.org> #
# #
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
# #
###############################################################################
###############################################################################
# Definitions
###############################################################################
include Config
VER = 0.14.0
THISAPP = userspace-rcu-$(VER)
DL_FILE = $(THISAPP).tar.bz2
DL_FROM = $(URL_IPFIRE)
DIR_APP = $(DIR_SRC)/$(THISAPP)
TARGET = $(DIR_INFO)/$(THISAPP)
###############################################################################
# Top-level Rules
###############################################################################
objects = $(DL_FILE)
$(DL_FILE) = $(DL_FROM)/$(DL_FILE)
$(DL_FILE)_BLAKE2 = ba9fa4c6dec693d2616234187db531f00fc0ade65f7e2a57182d9441728ddfa6f3e9d4544b824ca5edf7c027a43c9231d998a309c01f4bbab1eeefe856344f77
install : $(TARGET)
check : $(patsubst %,$(DIR_CHK)/%,$(objects))
download :$(patsubst %,$(DIR_DL)/%,$(objects))
b2 : $(subst %,%_BLAKE2,$(objects))
dist:
@$(PAK)
###############################################################################
# Downloading, checking, b2sum
###############################################################################
$(patsubst %,$(DIR_CHK)/%,$(objects)) :
@$(CHECK)
$(patsubst %,$(DIR_DL)/%,$(objects)) :
@$(LOAD)
$(subst %,%_BLAKE2,$(objects)) :
@$(B2SUM)
###############################################################################
# Installation Details
###############################################################################
$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects))
@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar axf $(DIR_DL)/$(DL_FILE)
$(UPDATE_AUTOMAKE)
cd $(DIR_APP) && ./configure \
--prefix=/usr \
--disable-static
cd $(DIR_APP) && make $(MAKETUNING)
cd $(DIR_APP) && make install
@rm -rf $(DIR_APP)
@$(POSTBUILD)