Changes in benchmark/readyQ/yield.cpp [3b80db8:8fe35be]
- File:
-
- 1 edited
-
benchmark/readyQ/yield.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/yield.cpp
r3b80db8 r8fe35be 33 33 { 34 34 threads_left = nthreads; 35 Fibre * threads[nthreads];35 Fibre ** threads = new Fibre *[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; 54 55 } 55 56
Note:
See TracChangeset
for help on using the changeset viewer.