diff options
| author | bors <bors@rust-lang.org> | 2024-05-04 12:41:40 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-05-04 12:41:40 +0000 |
| commit | d7ea27808deb5e10a0f7384e339e4e6165e33398 (patch) | |
| tree | ddd4cb3a7df1559199d877cad51f3626d13c75df /library/std/src/sys/sync/mod.rs | |
| parent | 7dd170fccb3be6b1737af5df14dd736b366236c1 (diff) | |
| parent | 5f4f4fbb989b3f966b4fc1fd7bd3d5089c458cd2 (diff) | |
| download | rust-d7ea27808deb5e10a0f7384e339e4e6165e33398.tar.gz rust-d7ea27808deb5e10a0f7384e339e4e6165e33398.zip | |
Auto merge of #124703 - matthiaskrgr:rollup-2lljptd, r=matthiaskrgr
Rollup of 8 pull requests Successful merges: - #123356 (Reduce code size of `thread::set_current`) - #124159 (Move thread parking to `sys::sync`) - #124293 (Let miri and const eval execute intrinsics' fallback bodies) - #124677 (Set non-leaf frame pointers on Fuchsia targets) - #124692 (We do not coerce `&mut &mut T -> *mut mut T`) - #124698 (Rewrite `rustdoc-determinism` test in Rust) - #124700 (Remove an unnecessary cast) - #124701 (Docs: suggest `uN::checked_sub` instead of check-then-unchecked) r? `@ghost` `@rustbot` modify labels: rollup
Diffstat (limited to 'library/std/src/sys/sync/mod.rs')
| -rw-r--r-- | library/std/src/sys/sync/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/library/std/src/sys/sync/mod.rs b/library/std/src/sys/sync/mod.rs index 623e6bccd51..52fac5902a2 100644 --- a/library/std/src/sys/sync/mod.rs +++ b/library/std/src/sys/sync/mod.rs @@ -2,8 +2,10 @@ mod condvar; mod mutex; mod once; mod rwlock; +mod thread_parking; pub use condvar::Condvar; pub use mutex::Mutex; pub use once::{Once, OnceState}; pub use rwlock::RwLock; +pub use thread_parking::Parker; |
