OSDN Git Service

Merge tag 'linux-watchdog-6.3-rc1' of git://www.linux-watchdog.org/linux-watchdog
[tomoyo/tomoyo-test1.git] / rust / kernel / sync.rs
1 // SPDX-License-Identifier: GPL-2.0
2
3 //! Synchronisation primitives.
4 //!
5 //! This module contains the kernel APIs related to synchronisation that have been ported or
6 //! wrapped for usage by Rust code in the kernel.
7
8 mod arc;
9
10 pub use arc::{Arc, ArcBorrow, UniqueArc};