Skip to content

Commit 4616c67

Browse files
authored
Unrolled build for rust-lang#124159
Rollup merge of rust-lang#124159 - joboet:move_pal_thread_parking, r=ChrisDenton Move thread parking to `sys::sync` Part of rust-lang#117276. I'll leave the platform-specific API abstractions in `sys::pal`, as per the initial proposal. I'm not entirely sure whether we'll want to keep it that way, but that remains to be seen. r? ``@ChrisDenton`` (if you have time)
2 parents 7dd170f + a56fd37 commit 4616c67

File tree

23 files changed

+25
-57
lines changed

23 files changed

+25
-57
lines changed

library/std/src/sys/pal/sgx/thread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ mod task_queue {
6767
pub mod wait_notify {
6868
use crate::pin::Pin;
6969
use crate::sync::Arc;
70-
use crate::sys_common::thread_parking::Parker;
70+
use crate::sys::sync::Parker;
7171

7272
pub struct Notifier(Arc<Parker>);
7373

library/std/src/sys/pal/teeos/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ pub mod thread;
3030
pub mod thread_local_dtor;
3131
#[path = "../unix/thread_local_key.rs"]
3232
pub mod thread_local_key;
33-
#[path = "../unsupported/thread_parking.rs"]
34-
pub mod thread_parking;
3533
#[allow(non_upper_case_globals)]
3634
#[path = "../unix/time.rs"]
3735
pub mod time;

library/std/src/sys/pal/uefi/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ pub mod stdio;
3030
pub mod thread;
3131
#[path = "../unsupported/thread_local_key.rs"]
3232
pub mod thread_local_key;
33-
#[path = "../unsupported/thread_parking.rs"]
34-
pub mod thread_parking;
3533
pub mod time;
3634

3735
mod helpers;

library/std/src/sys/pal/unix/thread_parking/netbsd.rs library/std/src/sys/pal/unix/thread_parking.rs

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
// Only used on NetBSD. If other platforms start using id-based parking, use
2+
// separate modules for each platform.
3+
#![cfg(target_os = "netbsd")]
4+
15
use crate::ffi::{c_int, c_void};
26
use crate::ptr;
37
use crate::time::Duration;

library/std/src/sys/pal/unix/thread_parking/mod.rs

-24
This file was deleted.

library/std/src/sys/pal/unsupported/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ pub mod thread;
1414
#[cfg(target_thread_local)]
1515
pub mod thread_local_dtor;
1616
pub mod thread_local_key;
17-
pub mod thread_parking;
1817
pub mod time;
1918

2019
mod common;

library/std/src/sys/pal/wasi/mod.rs

-7
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,6 @@ pub mod thread_local_dtor;
3939
pub mod thread_local_key;
4040
pub mod time;
4141

42-
cfg_if::cfg_if! {
43-
if #[cfg(not(target_feature = "atomics"))] {
44-
#[path = "../unsupported/thread_parking.rs"]
45-
pub mod thread_parking;
46-
}
47-
}
48-
4942
#[path = "../unsupported/common.rs"]
5043
#[deny(unsafe_op_in_unsafe_fn)]
5144
#[allow(unused)]

library/std/src/sys/pal/wasip2/mod.rs

-9
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,6 @@ pub mod thread_local_key;
4141
#[path = "../wasi/time.rs"]
4242
pub mod time;
4343

44-
cfg_if::cfg_if! {
45-
if #[cfg(target_feature = "atomics")] {
46-
compile_error!("The wasm32-wasip2 target does not support atomics");
47-
} else {
48-
#[path = "../unsupported/thread_parking.rs"]
49-
pub mod thread_parking;
50-
}
51-
}
52-
5344
#[path = "../unsupported/common.rs"]
5445
#[deny(unsafe_op_in_unsafe_fn)]
5546
#[allow(unused)]

library/std/src/sys/pal/wasm/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,6 @@ cfg_if::cfg_if! {
5050
} else {
5151
#[path = "../unsupported/thread.rs"]
5252
pub mod thread;
53-
#[path = "../unsupported/thread_parking.rs"]
54-
pub mod thread_parking;
5553
}
5654
}
5755

library/std/src/sys/pal/windows/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@ pub mod stdio;
3333
pub mod thread;
3434
pub mod thread_local_dtor;
3535
pub mod thread_local_key;
36-
pub mod thread_parking;
3736
pub mod time;
3837
cfg_if::cfg_if! {
3938
if #[cfg(not(target_vendor = "uwp"))] {

library/std/src/sys/pal/xous/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ pub mod process;
1818
pub mod stdio;
1919
pub mod thread;
2020
pub mod thread_local_key;
21-
pub mod thread_parking;
2221
pub mod time;
2322

2423
#[path = "../unsupported/common.rs"]

library/std/src/sys/pal/zkvm/mod.rs

-3
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,6 @@ pub mod time;
3232
#[path = "../unsupported/thread.rs"]
3333
pub mod thread;
3434

35-
#[path = "../unsupported/thread_parking.rs"]
36-
pub mod thread_parking;
37-
3835
mod abi;
3936

4037
use crate::io as std_io;

library/std/src/sys/sync/mod.rs

+2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ mod condvar;
22
mod mutex;
33
mod once;
44
mod rwlock;
5+
mod thread_parking;
56

67
pub use condvar::Condvar;
78
pub use mutex::Mutex;
89
pub use once::{Once, OnceState};
910
pub use rwlock::RwLock;
11+
pub use thread_parking::Parker;

library/std/src/sys/pal/unix/thread_parking/darwin.rs library/std/src/sys/sync/thread_parking/darwin.rs

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
//! provided by libdispatch, as the underlying Mach semaphore is only dubiously
1111
//! public.
1212
13+
#![allow(non_camel_case_types)]
14+
1315
use crate::pin::Pin;
1416
use crate::sync::atomic::{
1517
AtomicI8,

library/std/src/sys_common/thread_parking/mod.rs library/std/src/sys/sync/thread_parking/mod.rs

+14-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,20 @@ cfg_if::cfg_if! {
1818
))] {
1919
mod id;
2020
pub use id::Parker;
21+
} else if #[cfg(target_os = "windows")] {
22+
mod windows;
23+
pub use windows::Parker;
24+
} else if #[cfg(all(target_vendor = "apple", not(miri)))] {
25+
mod darwin;
26+
pub use darwin::Parker;
27+
} else if #[cfg(target_os = "xous")] {
28+
mod xous;
29+
pub use xous::Parker;
30+
} else if #[cfg(target_family = "unix")] {
31+
mod pthread;
32+
pub use pthread::Parker;
2133
} else {
22-
pub use crate::sys::thread_parking::Parker;
34+
mod unsupported;
35+
pub use unsupported::Parker;
2336
}
2437
}

library/std/src/sys/pal/unix/thread_parking/pthread.rs library/std/src/sys/sync/thread_parking/pthread.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ impl Parker {
134134
// This implementation doesn't require `unsafe`, but other implementations
135135
// may assume this is only called by the thread that owns the Parker.
136136
//
137-
// For memory ordering, see std/src/sys_common/thread_parking/futex.rs
137+
// For memory ordering, see futex.rs
138138
pub unsafe fn park(self: Pin<&Self>) {
139139
// If we were previously notified then we consume this notification and
140140
// return quickly.

library/std/src/sys_common/mod.rs

-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ pub mod io;
2626
pub mod lazy_box;
2727
pub mod process;
2828
pub mod thread_local_dtor;
29-
pub mod thread_parking;
3029
pub mod wstr;
3130
pub mod wtf8;
3231

library/std/src/thread/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -174,8 +174,8 @@ use crate::ptr::addr_of_mut;
174174
use crate::str;
175175
use crate::sync::atomic::{AtomicUsize, Ordering};
176176
use crate::sync::Arc;
177+
use crate::sys::sync::Parker;
177178
use crate::sys::thread as imp;
178-
use crate::sys_common::thread_parking::Parker;
179179
use crate::sys_common::{AsInner, IntoInner};
180180
use crate::time::{Duration, Instant};
181181

0 commit comments

Comments
 (0)