about summary refs log tree commit diff
path: root/library/std/src/sys_common/thread_parker/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'library/std/src/sys_common/thread_parker/mod.rs')
-rw-r--r--library/std/src/sys_common/thread_parker/mod.rs1
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 4ff76aea23d..7fd4d3610ca 100644
--- a/library/std/src/sys_common/thread_parker/mod.rs
+++ b/library/std/src/sys_common/thread_parker/mod.rs
@@ -5,6 +5,7 @@ cfg_if::cfg_if! {
         all(target_arch = "wasm32", target_feature = "atomics"),
         target_os = "openbsd",
         target_os = "netbsd",
+        target_os = "dragonfly",
     ))] {
         mod futex;
         pub use futex::Parker;