| 33 | /// class WorkerThread |
| 34 | |
| 35 | THREAD_ENTRY_DECLARE WorkerThread::workerThreadRoutine(THREAD_ENTRY_PARAM arg) |
| 36 | { |
| 37 | WorkerThread* thd = static_cast<WorkerThread*> (arg); |
| 38 | return (THREAD_ENTRY_RETURN)(IPTR) thd->threadRoutine(); |
| 39 | } |
| 40 | |
| 41 | WorkerThread* WorkerThread::start(Coordinator* coordinator) |
| 42 | { |
nothing calls this directly
no test coverage detected