We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 2d9e7e0 + a5a1e0c commit ff5e32dCopy full SHA for ff5e32d
Cargo.toml
@@ -79,7 +79,3 @@ members = [
79
"crossbeam-skiplist",
80
"crossbeam-utils",
81
]
82
-
83
-[patch.crates-io]
84
-# https://github.com/matklad/once_cell/pull/185
85
-once_cell = { git = "https://github.com/taiki-e/once_cell.git", branch = "provenance" }
crossbeam-utils/src/sync/wait_group.rs
@@ -39,6 +39,7 @@ use std::fmt;
39
///
40
/// // Block until all threads have finished their work.
41
/// wg.wait();
42
+/// # std::thread::sleep(std::time::Duration::from_millis(500)); // wait for background threads closed: https://github.com/rust-lang/miri/issues/1371
43
/// ```
44
45
/// [`Barrier`]: std::sync::Barrier
0 commit comments