Changes in benchmark/readyQ/yield.cpp [8fe35be:3b80db8]
- File:
-
- 1 edited
-
benchmark/readyQ/yield.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/yield.cpp
r8fe35be r3b80db8 33 33 { 34 34 threads_left = nthreads; 35 Fibre * * threads = new Fibre *[nthreads]();35 Fibre * threads[nthreads]; 36 36 for(unsigned i = 0; i < nthreads; i++) { 37 37 threads[i] = new Fibre(); … … 52 52 fibre_join( threads[i], nullptr ); 53 53 } 54 delete[] threads;55 54 } 56 55
Note:
See TracChangeset
for help on using the changeset viewer.