summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil/Thread.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceUtil/Thread.cpp')
-rw-r--r--cpp/src/IceUtil/Thread.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/cpp/src/IceUtil/Thread.cpp b/cpp/src/IceUtil/Thread.cpp
index 63ba6ddbdc7..f2121a1e45c 100644
--- a/cpp/src/IceUtil/Thread.cpp
+++ b/cpp/src/IceUtil/Thread.cpp
@@ -15,19 +15,6 @@ using namespace std;
#ifdef WIN32
-IceUtil::HandleWrapper::HandleWrapper(HANDLE h) :
- handle(h)
-{
-}
-
-IceUtil::HandleWrapper::~HandleWrapper()
-{
- if (handle != 0)
- {
- CloseHandle(handle);
- }
-}
-
IceUtil::ThreadControl::ThreadControl() :
_handle(new HandleWrapper(0)),
_id(GetCurrentThreadId())