Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v5.1-rc2 12 lines 318 B view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef _RCUPDATE_H 3#define _RCUPDATE_H 4 5#include <urcu.h> 6 7#define rcu_dereference_raw(p) rcu_dereference(p) 8#define rcu_dereference_protected(p, cond) rcu_dereference(p) 9#define rcu_dereference_check(p, cond) rcu_dereference(p) 10#define RCU_INIT_POINTER(p, v) (p) = (v) 11 12#endif