about summary refs log tree commit diff
path: root/library/std/src/sync/mpsc/blocking.rs
AgeCommit message (Collapse)AuthorLines
2022-11-09implement `sync::mpsc` as a wrapper around `sync::mpmc`Ibraheem Ahmed-82/+0
2022-04-08Remove ptr-int transmute in std::sync::mpscBen Kimock-7/+6
Since https://github.com/rust-lang/rust/pull/95340 landed, Miri with -Zmiri-check-number-validity produces an error on the test suites of some crates which implement concurrency tools, because it seems like such crates tend to use std::sync::mpsc in their tests. This fixes the problem by storing pointer bytes in a pointer.
2020-12-22Migrate standard library away from compare_and_swapLinus Färnstrand-1/+5
2020-07-27mv std libs to library/mark-0/+79