Skip to content

Commit ac38258

Browse files
committed
Use futex based thread parker on Fuchsia.
1 parent 7f9e013 commit ac38258

File tree

3 files changed

+52
-0
lines changed

3 files changed

+52
-0
lines changed

library/std/src/sys/unix/futex.rs

+50
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
target_os = "freebsd",
66
target_os = "openbsd",
77
target_os = "dragonfly",
8+
target_os = "fuchsia",
89
))]
910

1011
use crate::sync::atomic::AtomicU32;
@@ -241,3 +242,52 @@ pub fn futex_wake(futex: &AtomicU32) -> bool {
241242
pub fn futex_wake_all(futex: &AtomicU32) {
242243
unsafe { emscripten_futex_wake(futex, i32::MAX) };
243244
}
245+
246+
#[cfg(target_os = "fuchsia")]
247+
mod zircon {
248+
type zx_time_t = i64;
249+
type zx_futex_t = crate::sync::atomic::AtomicU32;
250+
type zx_handle_t = u32;
251+
type zx_status_t = i32;
252+
253+
pub const ZX_HANDLE_INVALID: zx_handle_t = 0;
254+
pub const ZX_ERR_TIMED_OUT: zx_status_t = -21;
255+
pub const ZX_TIME_INFINITE: zx_time_t = zx_time_t::MAX;
256+
257+
extern "C" {
258+
pub fn zx_futex_wait(
259+
value_ptr: *const zx_futex_t,
260+
current_value: zx_futex_t,
261+
new_futex_owner: zx_handle_t,
262+
deadline: zx_time_t,
263+
) -> zx_status_t;
264+
pub fn zx_futex_wake(value_ptr: *const zx_futex_t, wake_count: u32) -> zx_status_t;
265+
pub fn zx_clock_get_monotonic() -> zx_time_t;
266+
}
267+
}
268+
269+
#[cfg(target_os = "fuchsia")]
270+
pub fn futex_wait(futex: &AtomicU32, expected: u32, timeout: Option<Duration>) -> bool {
271+
use crate::convert::TryFrom;
272+
273+
// Sleep forever if the timeout is longer than fits in a i64.
274+
let deadline = timeout
275+
.and_then(|d| {
276+
i64::try_from(d.as_nanos())
277+
.ok()?
278+
.checked_add(unsafe { zircon::zx_clock_get_monotonic() })
279+
})
280+
.unwrap_or(zircon::ZX_TIME_INFINITE);
281+
282+
unsafe {
283+
zircon::zx_futex_wait(futex, AtomicU32::new(expected), zircon::ZX_HANDLE_INVALID, deadline)
284+
!= zircon::ZX_ERR_TIMED_OUT
285+
}
286+
}
287+
288+
// Fuchsia doesn't tell us how many threads are woken up, so this always returns false.
289+
#[cfg(target_os = "fuchsia")]
290+
pub fn futex_wake(futex: &AtomicU32) -> bool {
291+
unsafe { zircon::zx_futex_wake(futex, 1) };
292+
false
293+
}

library/std/src/sys/unix/thread_parker.rs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
target_os = "freebsd",
88
target_os = "openbsd",
99
target_os = "dragonfly",
10+
target_os = "fuchsia",
1011
)))]
1112

1213
use crate::cell::UnsafeCell;

library/std/src/sys_common/thread_parker/mod.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ cfg_if::cfg_if! {
66
target_os = "freebsd",
77
target_os = "openbsd",
88
target_os = "dragonfly",
9+
target_os = "fuchsia",
910
))] {
1011
mod futex;
1112
pub use futex::Parker;

0 commit comments

Comments
 (0)