Changeset def751f for benchmark/readyQ/cycle.cfa
- Timestamp:
- Jul 25, 2022, 3:17:25 PM (3 years ago)
- Branches:
- ADT, ast-experimental, master, pthread-emulation, qualifiedEnum
- Children:
- b0d9ff7
- Parents:
- 4e2befe3 (diff), ffec1bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/cycle.cfa
r4e2befe3 rdef751f 52 52 { 53 53 threads_left = tthreads; 54 BThrd * threads[tthreads];55 Partner thddata[tthreads];54 BThrd ** threads = alloc(tthreads); 55 Partner * thddata = alloc(tthreads); 56 56 for(i; tthreads) { 57 (thddata[i]){}; 57 58 unsigned pi = (i + nthreads) % tthreads; 58 59 thddata[i].next = &thddata[pi].self; … … 83 84 delete(threads[i]); 84 85 } 86 free(threads); 87 free(thddata); 85 88 } 86 89
Note:
See TracChangeset
for help on using the changeset viewer.