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 ae6e2ab commit c70d081Copy full SHA for c70d081
src/pool/treiber.rs
@@ -44,6 +44,7 @@ pub trait Node: Sized {
44
fn next_mut(&mut self) -> &mut AtomicPtr<Self>;
45
}
46
47
+#[repr(C)]
48
pub union UnionNode<T> {
49
next: ManuallyDrop<AtomicPtr<UnionNode<T>>>,
50
pub data: ManuallyDrop<T>,
0 commit comments