fuchsia_rcu/lib.rs
1// Copyright 2025 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5pub mod rcu_arc;
6pub mod rcu_cell;
7pub mod rcu_option_arc;
8pub mod rcu_option_cell;
9pub mod rcu_ptr;
10pub mod rcu_read_scope;
11
12mod atomic_stack;
13mod state_machine;
14
15pub use rcu_read_scope::RcuReadScope;
16pub use state_machine::{rcu_drop, rcu_run_callbacks, rcu_synchronize};