Skip to content

Commit f0bcb73

Browse files
committed
compiler/rustc_data_structures/src/sync.rs: remove atomics, but not AtomicU64!
1 parent efa3dae commit f0bcb73

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/parallel-rustc.md

-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ are implemented differently depending on whether `parallel-compiler` is true.
4646

4747
| data structure | parallel | non-parallel |
4848
| -------------------------------- | --------------------------------------------------- | ------------ |
49-
| Atomic{Bool}/{Usize}/{U32}/{U64} | std::sync::atomic::Atomic{Bool}/{Usize}/{U32}/{U64} | (std::cell::Cell<bool/usize/u32/u64>) |
5049
| OnceCell | std::sync::OnceLock | std::cell::OnceCell |
5150
| Lock\<T> | (parking_lot::Mutex\<T>) | (std::cell::RefCell) |
5251
| RwLock\<T> | (parking_lot::RwLock\<T>) | (std::cell::RefCell) |

0 commit comments

Comments
 (0)