3 #include "thread_private.h"
7 void Thread::platform_join()
9 WaitForSingleObject(priv_->handle, INFINITE);
12 void Thread::platform_kill()
14 TerminateThread(priv_->handle, 0);
17 void Thread::platform_launch()
19 DWORD dummy; // Win9x needs the lpTthreadId parameter
20 priv_->handle = CreateThread(0, 0, &Private::main_wrapper, this, 0, &dummy);