diff options
Diffstat (limited to 'cpp/include/IceUtil/Thread.h')
-rw-r--r-- | cpp/include/IceUtil/Thread.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/include/IceUtil/Thread.h b/cpp/include/IceUtil/Thread.h index 1e5634d2c18..05278771089 100644 --- a/cpp/include/IceUtil/Thread.h +++ b/cpp/include/IceUtil/Thread.h @@ -90,9 +90,9 @@ public: private: #ifdef _WIN32 + bool _detached; HandleWrapperPtr _handle; unsigned _id; - bool _detached; #else pthread_t _id; #endif @@ -124,6 +124,7 @@ public: private: + bool _started; #ifdef _WIN32 unsigned _id; HandleWrapperPtr _handle; |