X-Git-Url: http://plrg.eecs.uci.edu/git/?p=libcds.git;a=blobdiff_plain;f=cds%2Fos%2Fwin%2Fthread.h;fp=cds%2Fos%2Fwin%2Fthread.h;h=2650fd062512106ef8175f074f0f569dfe780391;hp=15fd57f2a01cae365b1a4215e4d561f95538eaff;hb=41c348cac118e9699347aed5f73b6606ffca9cf6;hpb=49564c8304990644031b14fc8adb73aad594cc87 diff --git a/cds/os/win/thread.h b/cds/os/win/thread.h index 15fd57f2..2650fd06 100644 --- a/cds/os/win/thread.h +++ b/cds/os/win/thread.h @@ -19,7 +19,7 @@ namespace cds { namespace OS { } /// Tests whether the thread is alive - static inline bool isThreadAlive( ThreadId id ) + static inline bool is_thread_alive( ThreadId id ) { HANDLE h = ::OpenThread( SYNCHRONIZE, FALSE, id ); if ( h == nullptr ) @@ -35,7 +35,7 @@ namespace cds { namespace OS { #ifndef CDS_CXX11_INLINE_NAMESPACE_SUPPORT using Win32::ThreadId; using Win32::get_current_thread_id; - using Win32::isThreadAlive; + using Win32::is_thread_alive; #endif //@endcond