doc/examples: add synchronize_rcu()
[urcu.git] / doc / examples / urcu-flavors / mb.c
index 757fe9e0a7e3acae21bab6b59300a88c2f34d83d..62ad54bb7ff00309f7de7572116de1222bd8b7ee 100644 (file)
@@ -117,6 +117,15 @@ int main(int argc, char **argv)
                call_rcu(&node->rcu_head, rcu_free_node);
        }
 
+       /*
+        * We can also wait for a quiescent state by calling
+        * synchronize_rcu() rather than using call_rcu(). It is usually
+        * a slower approach than call_rcu(), because the latter can
+        * batch work. Moreover, call_rcu() can be called from a RCU
+        * read-side critical section, but synchronize_rcu() should not.
+        */
+       synchronize_rcu();
+
        sleep(1);
 
        /*
This page took 0.022535 seconds and 4 git commands to generate.