| 25 | }; |
| 26 | |
| 27 | void SimpleThread::startThread(void* callbackObj, CallbackFunc callbackFunc) |
| 28 | { |
| 29 | thread = new ThreadRef(callbackObj, callbackFunc); |
| 30 | thread->handle = CreateThread(NULL, StackSize, &ThreadRef::ThreadProc, thread, 0, NULL); |
| 31 | } |
| 32 | |
| 33 | void SimpleThread::join() |
| 34 | { |
nothing calls this directly
no outgoing calls
no test coverage detected