Changes in benchmark/readyQ/yield.rs [821c534:d0b9247]
- File:
-
- 1 edited
-
benchmark/readyQ/yield.rs (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/yield.rs
r821c534 rd0b9247 44 44 let nprocs = options.value_of("nprocs").unwrap().parse::<usize>().unwrap(); 45 45 46 let exp = Arc::new(bench::BenchData::new(options, nthreads , None));46 let exp = Arc::new(bench::BenchData::new(options, nthreads)); 47 47 48 48 let s = (1000000 as u64).to_formatted_string(&Locale::en); … … 50 50 51 51 let thddata : Arc<Vec<Arc<Yielder>>> = Arc::new( 52 (0..nthreads).map(|_i| { 52 (0..nthreads).map(|i| { 53 let pi = (i + nthreads) % nthreads; 53 54 Arc::new(Yielder{ 54 55 sem: sync::Semaphore::new(0),
Note:
See TracChangeset
for help on using the changeset viewer.