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 a3252af commit a8e38edCopy full SHA for a8e38ed
src/atomic_cell.rs renamed to crossbeam-utils/src/atomic/atomic_cell.rs
crossbeam-utils/src/atomic/mod.rs
@@ -1,5 +1,7 @@
1
//! Additional utilities for atomics.
2
3
+mod atomic_cell;
4
mod consume;
5
6
+pub use self::atomic_cell::AtomicCell;
7
pub use self::consume::AtomicConsume;
src/lib.rs
@@ -59,14 +59,13 @@ mod _epoch {
59
pub use _epoch::crossbeam_epoch as epoch;
60
61
mod arc_cell;
62
-mod atomic_cell;
63
64
extern crate crossbeam_utils;
65
66
/// Additional utilities for atomics.
67
pub mod atomic {
68
pub use arc_cell::ArcCell;
69
- pub use atomic_cell::AtomicCell;
+ pub use crossbeam_utils::atomic::AtomicCell;
70
pub use crossbeam_utils::atomic::AtomicConsume;
71
}
72
0 commit comments