]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/send-is-not-static-par-for.rs
rustdoc: Replace no-pretty-expanded with pretty-expanded
[rust.git] / src / test / run-pass / send-is-not-static-par-for.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // pretty-expanded FIXME #23616
12
13 #![feature(core, std_misc)]
14 use std::thread::Thread;
15 use std::sync::Mutex;
16
17 fn par_for<I, F>(iter: I, f: F)
18     where I: Iterator,
19           <I as Iterator>::Item: Send,
20           F: Fn(<I as Iterator>::Item) + Sync
21 {
22     let f = &f;
23     let _guards: Vec<_> = iter.map(|elem| {
24         Thread::scoped(move || {
25             f(elem)
26         })
27     }).collect();
28
29 }
30
31 fn sum(x: &[i32]) {
32     let sum_lengths = Mutex::new(0);
33     par_for(x.windows(4), |x| {
34         *sum_lengths.lock().unwrap() += x.len()
35     });
36
37     assert_eq!(*sum_lengths.lock().unwrap(), (x.len() - 3) * 4);
38 }
39
40 fn main() {
41     let mut elements = [0; 20];
42
43     // iterators over references into this stack frame
44     par_for(elements.iter_mut().enumerate(), |(i, x)| {
45         *x = i as i32
46     });
47
48     sum(&elements)
49 }