| 1 | //! Synchronization primitives. |
|---|---|
| 2 | |
| 3 | pub(crate) mod list; |
| 4 | #[cfg(feature = "std")] |
| 5 | #[cfg(not(crossbeam_loom))] |
| 6 | pub(crate) mod once_lock; |
| 7 | pub(crate) mod queue; |
| 8 |
| 1 | //! Synchronization primitives. |
|---|---|
| 2 | |
| 3 | pub(crate) mod list; |
| 4 | #[cfg(feature = "std")] |
| 5 | #[cfg(not(crossbeam_loom))] |
| 6 | pub(crate) mod once_lock; |
| 7 | pub(crate) mod queue; |
| 8 |