Changes in benchmark/readyQ/cycle.cpp [3b80db8:1f950c3b]
- File:
-
- 1 edited
-
benchmark/readyQ/cycle.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/cycle.cpp
r3b80db8 r1f950c3b 39 39 { 40 40 threads_left = tthreads; 41 Fibre * threads[tthreads];42 Partner thddata[tthreads];41 Fibre ** threads = new Fibre *[tthreads](); 42 Partner* thddata = new Partner[tthreads](); 43 43 for(unsigned i = 0; i < tthreads; i++) { 44 44 unsigned pi = (i + nthreads) % tthreads; … … 69 69 global_blocks += thddata[i].blocks; 70 70 } 71 72 delete[](threads); 73 delete[](thddata); 71 74 } 72 75
Note:
See TracChangeset
for help on using the changeset viewer.