Files
rust/library/std/src
Michael Goulet 4a01a38466 Rollup merge of #111087 - ibraheemdev:patch-15, r=dtolnay
Implement `Sync` for `mpsc::Sender`

`mpsc::Sender` is currently `!Sync` because the previous implementation contained an optimization where the channel started out as single-producer and was dynamically upgraded on the first clone, which relied on a unique reference to the sender. This optimization is one of the main reasons the old implementation was so complex and was removed in #93563. `mpsc::Sender` can now soundly implement `Sync`.

Note for any potential confusion, this chance does *not* add MPMC behavior. This only affects the already `Send + Clone` *sender*, not *receiver*.

It's technically possible to rely on the `!Sync` behavior in the same way as a `PhantomData<*mut T>`, but that seems very unlikely in practice. Either way, this change is insta-stable and needs an FCP.

`@rustbot` label +T-libs-api -T-libs
2023-06-23 19:47:19 -07:00
..
2022-08-01 20:10:40 +00:00
2022-12-11 01:20:18 -05:00
2022-12-11 01:20:18 -05:00
2022-08-18 18:07:39 -04:00
2023-04-27 15:56:57 +02:00
2023-06-10 19:22:07 -04:00
2023-06-21 14:59:40 -07:00
2023-05-03 22:09:33 -07:00
2022-09-26 10:14:45 +02:00
2023-06-10 10:45:50 -05:00
2023-06-10 10:45:50 -05:00
2023-06-21 01:08:10 +01:00
2023-04-29 19:04:16 +08:00