From a9d4051ddfeaeb1bc3b95e5f8721cbe7bcce9610 Mon Sep 17 00:00:00 2001 From: sanikoyes Date: Mon, 24 Mar 2014 16:06:10 +0800 Subject: [PATCH] Implement thread id in windows platform --- drivers/windows/thread_windows.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/windows/thread_windows.cpp b/drivers/windows/thread_windows.cpp index a48ec74d092..748e9661fad 100644 --- a/drivers/windows/thread_windows.cpp +++ b/drivers/windows/thread_windows.cpp @@ -46,7 +46,7 @@ DWORD ThreadWindows::thread_callback( LPVOID userdata ) { ThreadWindows *t=reinterpret_cast(userdata); t->callback(t->user); - t->id=(ID)0; // must implement + t->id=(ID)GetCurrentThreadId(); // must implement return 0; } @@ -67,7 +67,7 @@ Thread* ThreadWindows::create_func_windows(ThreadCreateCallback p_callback,void } Thread::ID ThreadWindows::get_thread_ID_func_windows() { - return (ID)0; //must implement + return (ID)GetCurrentThreadId(); //must implement } void ThreadWindows::wait_to_finish_func_windows(Thread* p_thread) {