We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent de99dab commit fb8a967Copy full SHA for fb8a967
docs/devel/rcu.txt
@@ -132,7 +132,7 @@ The core RCU API is small:
132
133
typeof(*p) atomic_rcu_read(p);
134
135
- atomic_rcu_read() is similar to atomic_mb_read(), but it makes
+ atomic_rcu_read() is similar to atomic_load_acquire(), but it makes
136
some assumptions on the code that calls it. This allows a more
137
optimized implementation.
138
@@ -154,7 +154,7 @@ The core RCU API is small:
154
155
void atomic_rcu_set(p, typeof(*p) v);
156
157
- atomic_rcu_set() is also similar to atomic_mb_set(), and it also
+ atomic_rcu_set() is similar to atomic_store_release(), though it also
158
makes assumptions on the code that calls it in order to allow a more
159
160
0 commit comments