diff options
| author | Yuki Okushi <jtitor@2k36.org> | 2022-06-22 15:16:09 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-22 15:16:09 +0900 |
| commit | 897745bf6744e781828907ba46268a9349bb3c38 (patch) | |
| tree | 436eb4879b04318c6bec65cb29f7a1d24c42df45 /library/std/src/sys_common | |
| parent | 7b442f717ea9cd747e02abdbad7868366e0061b9 (diff) | |
| parent | ac38258dcc4938af8a6eedca687512f1b3b486fe (diff) | |
| download | rust-897745bf6744e781828907ba46268a9349bb3c38.tar.gz rust-897745bf6744e781828907ba46268a9349bb3c38.zip | |
Rollup merge of #96768 - m-ou-se:futex-fuchsia, r=tmandry
Use futex based thread parker on Fuchsia.
Diffstat (limited to 'library/std/src/sys_common')
| -rw-r--r-- | library/std/src/sys_common/thread_parker/mod.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/library/std/src/sys_common/thread_parker/mod.rs b/library/std/src/sys_common/thread_parker/mod.rs index c789a388e05..7e8bfb2565e 100644 --- a/library/std/src/sys_common/thread_parker/mod.rs +++ b/library/std/src/sys_common/thread_parker/mod.rs @@ -6,6 +6,7 @@ cfg_if::cfg_if! { target_os = "freebsd", target_os = "openbsd", target_os = "dragonfly", + target_os = "fuchsia", ))] { mod futex; pub use futex::Parker; |
