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