X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=common%2Fos_thread.hpp;h=c01d228910e675f35cc1b56e8d7471c0cd2cdc2f;hb=b032a6f55c364f23206cd619d33bb1cf9867657d;hp=5fbdaabf274e0f51304b209f807b133bcb71d55e;hpb=58167d7abcd4159c5524ceca67f0ec58c96b0af7;p=apitrace diff --git a/common/os_thread.hpp b/common/os_thread.hpp index 5fbdaab..c01d228 100644 --- a/common/os_thread.hpp +++ b/common/os_thread.hpp @@ -341,6 +341,18 @@ private: typedef pthread_t native_handle_type; #endif + inline + thread() : + _native_handle(0) + { + } + + inline + thread(thread &other) : + _native_handle(other._native_handle) + { + } + template< class Function, class Arg > explicit thread( Function& f, Arg arg ) { #ifdef _WIN32 @@ -352,6 +364,11 @@ private: #endif } + inline bool + joinable(void) const { + return _native_handle != 0; + } + inline void join() { #ifdef _WIN32