Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • benchmark/readyQ/churn.cpp

    rdb89655 r3b80db8  
    5454                        Fibre * threads[nthreads];
    5555                        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]);
    5758                        }
    5859                        printf("Starting\n");
Note: See TracChangeset for help on using the changeset viewer.