We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 279461b commit 3b324b8Copy full SHA for 3b324b8
git-features/src/parallel/in_parallel.rs
@@ -47,7 +47,7 @@ where
47
crossbeam_utils::thread::scope(move |s| {
48
let receive_result = {
49
let (send_input, receive_input) = crossbeam_channel::bounded::<I>(num_threads);
50
- let (send_result, receive_result) = std::sync::mpsc::sync_channel::<O>(num_threads);
+ let (send_result, receive_result) = crossbeam_channel::bounded::<O>(num_threads);
51
for thread_id in 0..num_threads {
52
s.spawn({
53
let send_result = send_result.clone();
0 commit comments