Changes in benchmark/readyQ/churn.cpp [3b80db8:db89655]
- File:
-
- 1 edited
-
benchmark/readyQ/churn.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
benchmark/readyQ/churn.cpp
r3b80db8 rdb89655 54 54 Fibre * threads[nthreads]; 55 55 for(unsigned i = 0; i < nthreads; i++) { 56 threads[i] = new Fibre(); 57 threads[i]->run(churner_main, &thddata[i]); 56 threads[i] = new Fibre( reinterpret_cast<void (*)(void *)>(churner_main), &thddata[i] ); 58 57 } 59 58 printf("Starting\n");
Note:
See TracChangeset
for help on using the changeset viewer.