Uh oh!
There was an error while loading. Please reload this page.
Move std::sys::{mutex, condvar, rwlock} to std::sys::locks. - #95173
Conversation
rust-highfive
commented
Mar 21, 2022
r? @dtolnay (rust-highfive has picked a reviewer for you, use r? to override) |
m-ou-se
commented
Mar 21, 2022
Since this touches a lot of platform specific code: @bors rollup=iffy |
This comment has been minimized.
This comment has been minimized.
66b978d to
724fd5aComparedtolnay
commented
Mar 21, 2022
@bors r+ |
bors
commented
Mar 21, 2022
📌 Commit 724fd5adae37c900812fa7b3a605a7f2fdde0939 has been approved by |
bors
commented
Mar 22, 2022
⌛ Testing commit 724fd5adae37c900812fa7b3a605a7f2fdde0939 with merge 25793f067828e33f969eca5702d804ea2220aa0a... |
This comment has been minimized.
This comment has been minimized.
bors
commented
Mar 22, 2022
💔 Test failed - checks-actions |
dtolnay
commented
Mar 22, 2022
@rustbot author |
m-ou-se
commented
Mar 22, 2022
@bors r=dtolnay |
bors
commented
Mar 22, 2022
📌 Commit 8ddb34d has been approved by |
Move std::sys::{mutex, condvar, rwlock} to std::sys::locks.
This cleans up the the std::sys modules a bit by putting the locks in a single module called `locks` rather than spread over the three modules `mutex`, `condvar`, and `rwlock`. This makes it easier to organise lock implementations, which helps with rust-lang#93740.bors
commented
Mar 22, 2022
⌛ Testing commit 8ddb34d with merge 2cff93665efc8cdc2e63b40fc01f8a24b2e78fee... |
bors
commented
Mar 22, 2022
💔 Test failed - checks-actions |
This comment has been minimized.
This comment has been minimized.
m-ou-se
commented
Mar 22, 2022
Third time's a charm? (: @bors r=dtolnay |
bors
commented
Mar 22, 2022
📌 Commit 733153f has been approved by |
Dylan-DPC
commented
Mar 23, 2022
@bors rollup=never |
bors
commented
Mar 23, 2022
bors
commented
Mar 23, 2022
☀️ Test successful - checks-actions |
rust-timer
commented
Mar 23, 2022
Finished benchmarking commit (36748cf): comparison url. Summary: This benchmark run did not return any relevant results. If you disagree with this performance assessment, please file an issue in rust-lang/rustc-perf. @rustbot label: -perf-regression |
This cleans up the the std::sys modules a bit by putting the locks in a single module called
locksrather than spread over the three modulesmutex,condvar, andrwlock. This makes it easier to organise lock implementations, which helps with #93740.