Fix: compat_futex: uninitialized ret variable
[userspace-rcu.git] / urcu.c
CommitLineData
b257a10b
MD
1/*
2 * urcu.c
3 *
4 * Userspace RCU library
5 *
6982d6d7 6 * Copyright (c) 2009 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
af02d47e 7 * Copyright (c) 2009 Paul E. McKenney, IBM Corporation.
b257a10b 8 *
af02d47e
MD
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or (at your option) any later version.
13 *
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, write to the Free Software
21 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
54843abc
PM
22 *
23 * IBM's contributions to this file may be relicensed under LGPLv2 or later.
b257a10b
MD
24 */
25
fdf01eed 26#define _BSD_SOURCE
c1d2c60b 27#define _GNU_SOURCE
71c811bf 28#define _LGPL_SOURCE
9d4624e5 29#define _DEFAULT_SOURCE
27b012e2
MD
30#include <stdio.h>
31#include <pthread.h>
32#include <signal.h>
33#include <assert.h>
f69f195a 34#include <stdlib.h>
6d841bc2 35#include <stdint.h>
f69f195a 36#include <string.h>
09a9f986 37#include <errno.h>
e8043c1b 38#include <poll.h>
27b012e2 39
d73fb81f 40#include "urcu/wfcqueue.h"
57760d44 41#include "urcu/map/urcu.h"
af7c2dbe 42#include "urcu/static/urcu.h"
618b2595 43#include "urcu-pointer.h"
bd252a04 44#include "urcu/tls-compat.h"
71c811bf 45
4a6d7378 46#include "urcu-die.h"
5bffdd5d 47#include "urcu-wait.h"
4a6d7378 48
121a5d44 49/* Do not #define _LGPL_SOURCE to ensure we can emit the wrapper symbols */
71c811bf 50#undef _LGPL_SOURCE
27b012e2 51#include "urcu.h"
71c811bf 52#define _LGPL_SOURCE
27b012e2 53
3a71751e
PB
54/*
55 * If a reader is really non-cooperative and refuses to commit its
56 * rcu_active_readers count to memory (there is no barrier in the reader
e198fb6a 57 * per-se), kick it after 10 loops waiting for it.
3a71751e 58 */
e198fb6a 59#define KICK_READER_LOOPS 10
3a71751e
PB
60
61/*
62 * Active attempts to check for reader Q.S. before calling futex().
63 */
64#define RCU_QS_ACTIVE_ATTEMPTS 100
65
553b7eb9 66/*
eaaff0fe
MD
67 * The ABI of sys_membarrier changed after its original implementation.
68 * Disable it for now. Use RCU_MB flavor instead.
553b7eb9 69 */
eaaff0fe 70#define membarrier(...) -ENOSYS
553b7eb9
MD
71
72#define MEMBARRIER_EXPEDITED (1 << 0)
73#define MEMBARRIER_DELAYED (1 << 1)
74#define MEMBARRIER_QUERY (1 << 16)
75
fdf01eed 76#ifdef RCU_MEMBARRIER
834a45ba 77static int init_done;
1de4df4b 78int rcu_has_sys_membarrier;
834a45ba 79
02be5561 80void __attribute__((constructor)) rcu_init(void);
fdf01eed
MD
81#endif
82
83#ifdef RCU_MB
02be5561 84void rcu_init(void)
e90a6e9c
MD
85{
86}
87#endif
8a5fb4c9 88
fdf01eed
MD
89#ifdef RCU_SIGNAL
90static int init_done;
91
92void __attribute__((constructor)) rcu_init(void);
93void __attribute__((destructor)) rcu_exit(void);
94#endif
95
3c29ca5d
MD
96/*
97 * rcu_gp_lock ensures mutual exclusion between threads calling
98 * synchronize_rcu().
99 */
6abb4bd5 100static pthread_mutex_t rcu_gp_lock = PTHREAD_MUTEX_INITIALIZER;
3c29ca5d
MD
101/*
102 * rcu_registry_lock ensures mutual exclusion between threads
103 * registering and unregistering themselves to/from the registry, and
104 * with threads reading that registry from synchronize_rcu(). However,
105 * this lock is not held all the way through the completion of awaiting
106 * for the grace period. It is sporadically released between iterations
107 * on the registry.
108 * rcu_registry_lock may nest inside rcu_gp_lock.
109 */
110static pthread_mutex_t rcu_registry_lock = PTHREAD_MUTEX_INITIALIZER;
4de0cd31 111struct rcu_gp rcu_gp = { .ctr = RCU_GP_COUNT };
27b012e2 112
b0d5e790
MD
113/*
114 * Written to only by each individual reader. Read by both the reader and the
115 * writers.
116 */
1182f6f0 117__DEFINE_URCU_TLS_GLOBAL(struct rcu_reader, rcu_reader);
27b012e2 118
16aa9ee8 119static CDS_LIST_HEAD(registry);
27b012e2 120
5bffdd5d
MD
121/*
122 * Queue keeping threads awaiting to wait for a grace period. Contains
123 * struct gp_waiters_thread objects.
124 */
125static DEFINE_URCU_WAIT_QUEUE(gp_waiters);
126
6abb4bd5 127static void mutex_lock(pthread_mutex_t *mutex)
41718ff9
MD
128{
129 int ret;
09a9f986
PM
130
131#ifndef DISTRUST_SIGNALS_EXTREME
6abb4bd5 132 ret = pthread_mutex_lock(mutex);
4a6d7378
MD
133 if (ret)
134 urcu_die(ret);
09a9f986 135#else /* #ifndef DISTRUST_SIGNALS_EXTREME */
6abb4bd5 136 while ((ret = pthread_mutex_trylock(mutex)) != 0) {
4a6d7378
MD
137 if (ret != EBUSY && ret != EINTR)
138 urcu_die(ret);
bd252a04 139 if (CMM_LOAD_SHARED(URCU_TLS(rcu_reader).need_mb)) {
5481ddb3 140 cmm_smp_mb();
bd252a04 141 _CMM_STORE_SHARED(URCU_TLS(rcu_reader).need_mb, 0);
5481ddb3 142 cmm_smp_mb();
09a9f986
PM
143 }
144 poll(NULL,0,10);
145 }
146#endif /* #else #ifndef DISTRUST_SIGNALS_EXTREME */
41718ff9
MD
147}
148
6abb4bd5 149static void mutex_unlock(pthread_mutex_t *mutex)
41718ff9
MD
150{
151 int ret;
152
6abb4bd5 153 ret = pthread_mutex_unlock(mutex);
4a6d7378
MD
154 if (ret)
155 urcu_die(ret);
41718ff9
MD
156}
157
fdf01eed 158#ifdef RCU_MEMBARRIER
25cc6d18 159static void smp_mb_master(int group)
fdf01eed 160{
1de4df4b 161 if (caa_likely(rcu_has_sys_membarrier))
553b7eb9 162 (void) membarrier(MEMBARRIER_EXPEDITED);
fdf01eed 163 else
5481ddb3 164 cmm_smp_mb();
fdf01eed
MD
165}
166#endif
167
02be5561 168#ifdef RCU_MB
25cc6d18 169static void smp_mb_master(int group)
40e140c9 170{
5481ddb3 171 cmm_smp_mb();
40e140c9 172}
fdf01eed
MD
173#endif
174
175#ifdef RCU_SIGNAL
78ff9419 176static void force_mb_all_readers(void)
27b012e2 177{
02be5561 178 struct rcu_reader *index;
e3b0cef0 179
27b012e2 180 /*
5481ddb3 181 * Ask for each threads to execute a cmm_smp_mb() so we can consider the
27b012e2
MD
182 * compiler barriers around rcu read lock as real memory barriers.
183 */
16aa9ee8 184 if (cds_list_empty(&registry))
27b012e2 185 return;
3a86deba 186 /*
5481ddb3 187 * pthread_kill has a cmm_smp_mb(). But beware, we assume it performs
157dca95 188 * a cache flush on architectures with non-coherent cache. Let's play
5481ddb3 189 * safe and don't assume anything : we use cmm_smp_mc() to make sure the
157dca95 190 * cache flush is enforced.
3a86deba 191 */
16aa9ee8 192 cds_list_for_each_entry(index, &registry, node) {
6cf3827c 193 CMM_STORE_SHARED(index->need_mb, 1);
02be5561 194 pthread_kill(index->tid, SIGRCU);
09a9f986 195 }
27b012e2
MD
196 /*
197 * Wait for sighandler (and thus mb()) to execute on every thread.
09a9f986
PM
198 *
199 * Note that the pthread_kill() will never be executed on systems
200 * that correctly deliver signals in a timely manner. However, it
201 * is not uncommon for kernels to have bugs that can result in
202 * lost or unduly delayed signals.
203 *
204 * If you are seeing the below pthread_kill() executing much at
205 * all, we suggest testing the underlying kernel and filing the
206 * relevant bug report. For Linux kernels, we recommend getting
207 * the Linux Test Project (LTP).
27b012e2 208 */
16aa9ee8 209 cds_list_for_each_entry(index, &registry, node) {
6cf3827c 210 while (CMM_LOAD_SHARED(index->need_mb)) {
02be5561 211 pthread_kill(index->tid, SIGRCU);
09a9f986
PM
212 poll(NULL, 0, 1);
213 }
214 }
5481ddb3 215 cmm_smp_mb(); /* read ->need_mb before ending the barrier */
27b012e2 216}
9d7e3f89 217
25cc6d18 218static void smp_mb_master(int group)
9d7e3f89
MD
219{
220 force_mb_all_readers();
221}
fdf01eed 222#endif /* #ifdef RCU_SIGNAL */
27b012e2 223
bc6c15bb
MD
224/*
225 * synchronize_rcu() waiting. Single thread.
226 */
cfe78e25 227static void wait_gp(void)
bc6c15bb 228{
cfe78e25 229 /* Read reader_gp before read futex */
25cc6d18 230 smp_mb_master(RCU_MB_GROUP);
52c67a3d
MD
231 if (uatomic_read(&rcu_gp.futex) != -1)
232 return;
233 while (futex_async(&rcu_gp.futex, FUTEX_WAIT, -1,
234 NULL, NULL, 0)) {
235 switch (errno) {
236 case EWOULDBLOCK:
237 /* Value already changed. */
238 return;
239 case EINTR:
240 /* Retry if interrupted by signal. */
241 break; /* Get out of switch. */
242 default:
243 /* Unexpected error. */
244 urcu_die(errno);
245 }
246 }
bc6c15bb
MD
247}
248
3c29ca5d
MD
249/*
250 * Always called with rcu_registry lock held. Releases this lock between
251 * iterations and grabs it again. Holds the lock when it returns.
252 */
fd189fa5
MD
253static void wait_for_readers(struct cds_list_head *input_readers,
254 struct cds_list_head *cur_snap_readers,
255 struct cds_list_head *qsreaders)
27b012e2 256{
e198fb6a 257 unsigned int wait_loops = 0;
02be5561 258 struct rcu_reader *index, *tmp;
e198fb6a
MD
259#ifdef HAS_INCOHERENT_CACHES
260 unsigned int wait_gp_loops = 0;
261#endif /* HAS_INCOHERENT_CACHES */
27b012e2 262
40e140c9 263 /*
c9488684
MD
264 * Wait for each thread URCU_TLS(rcu_reader).ctr to either
265 * indicate quiescence (not nested), or observe the current
ed1b099e 266 * rcu_gp.ctr value.
27b012e2 267 */
cfe78e25 268 for (;;) {
f2aa4905
MD
269 if (wait_loops < RCU_QS_ACTIVE_ATTEMPTS)
270 wait_loops++;
e198fb6a 271 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
ed1b099e 272 uatomic_dec(&rcu_gp.futex);
cfe78e25 273 /* Write futex before read reader_gp */
25cc6d18 274 smp_mb_master(RCU_MB_GROUP);
cfe78e25
MD
275 }
276
fd189fa5
MD
277 cds_list_for_each_entry_safe(index, tmp, input_readers, node) {
278 switch (rcu_reader_state(&index->ctr)) {
279 case RCU_READER_ACTIVE_CURRENT:
280 if (cur_snap_readers) {
281 cds_list_move(&index->node,
282 cur_snap_readers);
283 break;
284 }
285 /* Fall-through */
286 case RCU_READER_INACTIVE:
287 cds_list_move(&index->node, qsreaders);
288 break;
289 case RCU_READER_ACTIVE_OLD:
290 /*
291 * Old snapshot. Leaving node in
292 * input_readers will make us busy-loop
293 * until the snapshot becomes current or
294 * the reader becomes inactive.
295 */
296 break;
297 }
cfe78e25
MD
298 }
299
e8043c1b 300#ifndef HAS_INCOHERENT_CACHES
fd189fa5 301 if (cds_list_empty(input_readers)) {
e198fb6a 302 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
cfe78e25 303 /* Read reader_gp before write futex */
25cc6d18 304 smp_mb_master(RCU_MB_GROUP);
ed1b099e 305 uatomic_set(&rcu_gp.futex, 0);
bc6c15bb 306 }
cfe78e25
MD
307 break;
308 } else {
3c29ca5d
MD
309 /* Temporarily unlock the registry lock. */
310 mutex_unlock(&rcu_registry_lock);
e198fb6a 311 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS)
cfe78e25
MD
312 wait_gp();
313 else
06f22bdb 314 caa_cpu_relax();
3c29ca5d
MD
315 /* Re-lock the registry lock before the next loop. */
316 mutex_lock(&rcu_registry_lock);
bc6c15bb 317 }
e8043c1b 318#else /* #ifndef HAS_INCOHERENT_CACHES */
27b012e2 319 /*
40e140c9 320 * BUSY-LOOP. Force the reader thread to commit its
bd252a04
MD
321 * URCU_TLS(rcu_reader).ctr update to memory if we wait
322 * for too long.
27b012e2 323 */
fd189fa5 324 if (cds_list_empty(input_readers)) {
e198fb6a 325 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
cfe78e25 326 /* Read reader_gp before write futex */
25cc6d18 327 smp_mb_master(RCU_MB_GROUP);
ed1b099e 328 uatomic_set(&rcu_gp.futex, 0);
cfe78e25
MD
329 }
330 break;
331 } else {
e198fb6a 332 if (wait_gp_loops == KICK_READER_LOOPS) {
25cc6d18 333 smp_mb_master(RCU_MB_GROUP);
e198fb6a
MD
334 wait_gp_loops = 0;
335 }
3c29ca5d
MD
336 /* Temporarily unlock the registry lock. */
337 mutex_unlock(&rcu_registry_lock);
e198fb6a
MD
338 if (wait_loops >= RCU_QS_ACTIVE_ATTEMPTS) {
339 wait_gp();
340 wait_gp_loops++;
341 } else {
06f22bdb 342 caa_cpu_relax();
40e140c9 343 }
3c29ca5d
MD
344 /* Re-lock the registry lock before the next loop. */
345 mutex_lock(&rcu_registry_lock);
40e140c9 346 }
e8043c1b 347#endif /* #else #ifndef HAS_INCOHERENT_CACHES */
27b012e2 348 }
27b012e2
MD
349}
350
9598a481 351void synchronize_rcu(void)
2bc59bd7 352{
fd189fa5
MD
353 CDS_LIST_HEAD(cur_snap_readers);
354 CDS_LIST_HEAD(qsreaders);
5bffdd5d
MD
355 DEFINE_URCU_WAIT_NODE(wait, URCU_WAIT_WAITING);
356 struct urcu_waiters waiters;
357
358 /*
359 * Add ourself to gp_waiters queue of threads awaiting to wait
360 * for a grace period. Proceed to perform the grace period only
361 * if we are the first thread added into the queue.
362 * The implicit memory barrier before urcu_wait_add()
363 * orders prior memory accesses of threads put into the wait
364 * queue before their insertion into the wait queue.
365 */
366 if (urcu_wait_add(&gp_waiters, &wait) != 0) {
367 /* Not first in queue: will be awakened by another thread. */
368 urcu_adaptative_busy_wait(&wait);
369 /* Order following memory accesses after grace period. */
370 cmm_smp_mb();
371 return;
372 }
373 /* We won't need to wake ourself up */
374 urcu_wait_set_state(&wait, URCU_WAIT_RUNNING);
fd189fa5 375
6abb4bd5 376 mutex_lock(&rcu_gp_lock);
135530fd 377
5bffdd5d
MD
378 /*
379 * Move all waiters into our local queue.
380 */
381 urcu_move_waiters(&waiters, &gp_waiters);
382
3c29ca5d
MD
383 mutex_lock(&rcu_registry_lock);
384
16aa9ee8 385 if (cds_list_empty(&registry))
2dfb8b5e
MD
386 goto out;
387
3c29ca5d
MD
388 /*
389 * All threads should read qparity before accessing data structure
390 * where new ptr points to. Must be done within rcu_registry_lock
391 * because it iterates on reader threads.
392 */
9598a481 393 /* Write new ptr before changing the qparity */
25cc6d18 394 smp_mb_master(RCU_MB_GROUP);
9598a481 395
9598a481 396 /*
c9488684 397 * Wait for readers to observe original parity or be quiescent.
3c29ca5d
MD
398 * wait_for_readers() can release and grab again rcu_registry_lock
399 * interally.
9598a481 400 */
fd189fa5 401 wait_for_readers(&registry, &cur_snap_readers, &qsreaders);
9598a481
MD
402
403 /*
c9488684 404 * Must finish waiting for quiescent state for original parity before
ed1b099e 405 * committing next rcu_gp.ctr update to memory. Failure to do so could
d40fde2c
MD
406 * result in the writer waiting forever while new readers are always
407 * accessing data (no progress). Enforce compiler-order of load
ed1b099e 408 * URCU_TLS(rcu_reader).ctr before store to rcu_gp.ctr.
9598a481 409 */
5481ddb3 410 cmm_barrier();
9598a481 411
5dba80f9 412 /*
5481ddb3 413 * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
5dba80f9
MD
414 * model easier to understand. It does not have a big performance impact
415 * anyway, given this is the write-side.
416 */
5481ddb3 417 cmm_smp_mb();
67c2d80b 418
c9488684 419 /* Switch parity: 0 -> 1, 1 -> 0 */
ed1b099e 420 CMM_STORE_SHARED(rcu_gp.ctr, rcu_gp.ctr ^ RCU_GP_CTR_PHASE);
c9488684
MD
421
422 /*
ed1b099e 423 * Must commit rcu_gp.ctr update to memory before waiting for quiescent
c9488684
MD
424 * state. Failure to do so could result in the writer waiting forever
425 * while new readers are always accessing data (no progress). Enforce
ed1b099e 426 * compiler-order of store to rcu_gp.ctr before load rcu_reader ctr.
c9488684
MD
427 */
428 cmm_barrier();
429
430 /*
431 *
432 * Adding a cmm_smp_mb() which is _not_ formally required, but makes the
433 * model easier to understand. It does not have a big performance impact
434 * anyway, given this is the write-side.
435 */
436 cmm_smp_mb();
437
9598a481 438 /*
c9488684 439 * Wait for readers to observe new parity or be quiescent.
3c29ca5d
MD
440 * wait_for_readers() can release and grab again rcu_registry_lock
441 * interally.
9598a481 442 */
fd189fa5
MD
443 wait_for_readers(&cur_snap_readers, NULL, &qsreaders);
444
445 /*
446 * Put quiescent reader list back into registry.
447 */
448 cds_list_splice(&qsreaders, &registry);
9598a481 449
3c29ca5d
MD
450 /*
451 * Finish waiting for reader threads before letting the old ptr
452 * being freed. Must be done within rcu_registry_lock because it
453 * iterates on reader threads.
454 */
25cc6d18 455 smp_mb_master(RCU_MB_GROUP);
2dfb8b5e 456out:
3c29ca5d 457 mutex_unlock(&rcu_registry_lock);
6abb4bd5 458 mutex_unlock(&rcu_gp_lock);
5bffdd5d
MD
459
460 /*
461 * Wakeup waiters only after we have completed the grace period
462 * and have ensured the memory barriers at the end of the grace
463 * period have been issued.
464 */
465 urcu_wake_all_waiters(&waiters);
2bc59bd7
PM
466}
467
121a5d44
MD
468/*
469 * library wrappers to be used by non-LGPL compatible source code.
470 */
471
472void rcu_read_lock(void)
473{
474 _rcu_read_lock();
475}
476
477void rcu_read_unlock(void)
478{
479 _rcu_read_unlock();
480}
481
882f3357
MD
482int rcu_read_ongoing(void)
483{
484 return _rcu_read_ongoing();
485}
486
121a5d44 487void rcu_register_thread(void)
27b012e2 488{
bd252a04
MD
489 URCU_TLS(rcu_reader).tid = pthread_self();
490 assert(URCU_TLS(rcu_reader).need_mb == 0);
491 assert(!(URCU_TLS(rcu_reader).ctr & RCU_GP_CTR_NEST_MASK));
02be5561 492
3c29ca5d 493 mutex_lock(&rcu_registry_lock);
02be5561 494 rcu_init(); /* In case gcc does not support constructor attribute */
bd252a04 495 cds_list_add(&URCU_TLS(rcu_reader).node, &registry);
3c29ca5d 496 mutex_unlock(&rcu_registry_lock);
27b012e2
MD
497}
498
121a5d44 499void rcu_unregister_thread(void)
27b012e2 500{
3c29ca5d 501 mutex_lock(&rcu_registry_lock);
bd252a04 502 cds_list_del(&URCU_TLS(rcu_reader).node);
3c29ca5d 503 mutex_unlock(&rcu_registry_lock);
27b012e2
MD
504}
505
fdf01eed
MD
506#ifdef RCU_MEMBARRIER
507void rcu_init(void)
508{
509 if (init_done)
510 return;
511 init_done = 1;
cf5271ee 512 if (!membarrier(MEMBARRIER_EXPEDITED | MEMBARRIER_QUERY))
1de4df4b 513 rcu_has_sys_membarrier = 1;
fdf01eed
MD
514}
515#endif
516
517#ifdef RCU_SIGNAL
02be5561 518static void sigrcu_handler(int signo, siginfo_t *siginfo, void *context)
27b012e2 519{
40e140c9 520 /*
5481ddb3
DG
521 * Executing this cmm_smp_mb() is the only purpose of this signal handler.
522 * It punctually promotes cmm_barrier() into cmm_smp_mb() on every thread it is
40e140c9
MD
523 * executed on.
524 */
5481ddb3 525 cmm_smp_mb();
bd252a04 526 _CMM_STORE_SHARED(URCU_TLS(rcu_reader).need_mb, 0);
5481ddb3 527 cmm_smp_mb();
27b012e2
MD
528}
529
8a5fb4c9 530/*
02be5561 531 * rcu_init constructor. Called when the library is linked, but also when
8a5fb4c9
MD
532 * reader threads are calling rcu_register_thread().
533 * Should only be called by a single thread at a given time. This is ensured by
3c29ca5d
MD
534 * holing the rcu_registry_lock from rcu_register_thread() or by running
535 * at library load time, which should not be executed by multiple
536 * threads nor concurrently with rcu_register_thread() anyway.
8a5fb4c9 537 */
02be5561 538void rcu_init(void)
27b012e2
MD
539{
540 struct sigaction act;
541 int ret;
542
8a5fb4c9
MD
543 if (init_done)
544 return;
545 init_done = 1;
546
02be5561 547 act.sa_sigaction = sigrcu_handler;
dd052bd3 548 act.sa_flags = SA_SIGINFO | SA_RESTART;
c297c21c 549 sigemptyset(&act.sa_mask);
02be5561 550 ret = sigaction(SIGRCU, &act, NULL);
4a6d7378
MD
551 if (ret)
552 urcu_die(errno);
27b012e2
MD
553}
554
02be5561 555void rcu_exit(void)
27b012e2 556{
71210954
MD
557 /*
558 * Don't unregister the SIGRCU signal handler anymore, because
559 * call_rcu threads could still be using it shortly before the
560 * application exits.
561 * Assertion disabled because call_rcu threads are now rcu
562 * readers, and left running at exit.
563 * assert(cds_list_empty(&registry));
564 */
27b012e2 565}
5e77fc1f 566
fdf01eed 567#endif /* #ifdef RCU_SIGNAL */
5e77fc1f 568
5e6b23a6 569DEFINE_RCU_FLAVOR(rcu_flavor);
541d828d 570
5e77fc1f 571#include "urcu-call-rcu-impl.h"
0376e7b2 572#include "urcu-defer-impl.h"
This page took 0.065179 seconds and 4 git commands to generate.