X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=README.md;h=b1a29906e002bf4fea5e8b702af69d9b343b7cd9;hb=313a8d6e4dc39c47fbc253802f60415b5f37e0d3;hp=8dfd5e96a62ab2cc048e54e26a111bcc7b357894;hpb=5c0a6bea7ff1decdc698be7ab21f9d7f306bb3fc;p=urcu.git diff --git a/README.md b/README.md index 8dfd5e9..b1a2990 100644 --- a/README.md +++ b/README.md @@ -441,6 +441,33 @@ In addition to the usual `make check` target, Userspace RCU features - `make bench`: long (many hours) benchmarks. +Known issues +------------ + +There is an application vs library compatibility issue between +applications built using Userspace RCU 0.10 headers linked against +Userspace RCU 0.11 or 0.12 shared objects. The problem occurs as +follows: + + - An application executable is built with _LGPL_SOURCE defined, includes + any of the Userspace RCU 0.10 urcu flavor headers, and is built + without the -fpic compiler option. + + - The Userspace RCU 0.10 library shared objects are updated to 0.11 + or 0.12 without rebuilding the application. + + - The application will hang, typically when RCU grace period + (synchronize_rcu) is invoked. + +Some possible work-arounds for this are: + + - Rebuild the application against Userspace RCU 0.11+. + + - Rebuild the application with -fpic. + + - Upgrade Userspace RCU to 0.13+ without installing 0.11 nor 0.12. + + Contacts --------