summaryrefslogtreecommitdiff
path: root/cpp/src/IceUtil/GCRecMutex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/src/IceUtil/GCRecMutex.cpp')
-rw-r--r--cpp/src/IceUtil/GCRecMutex.cpp51
1 files changed, 0 insertions, 51 deletions
diff --git a/cpp/src/IceUtil/GCRecMutex.cpp b/cpp/src/IceUtil/GCRecMutex.cpp
deleted file mode 100644
index 641935ade61..00000000000
--- a/cpp/src/IceUtil/GCRecMutex.cpp
+++ /dev/null
@@ -1,51 +0,0 @@
-// **********************************************************************
-//
-// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved.
-//
-// This copy of Ice is licensed to you under the terms described in the
-// ICE_LICENSE file included in this distribution.
-//
-// **********************************************************************
-
-#include <IceUtil/GCRecMutex.h>
-
-namespace IceUtil
-{
-GCRecMutex gcRecMutex;
-}
-
-using namespace IceUtil;
-
-static int gcInitCount = 0;
-
-GCRecMutex::GCRecMutex()
-{
- if(gcInitCount++ == 0)
- {
- _m = new RecMutex;
- }
-}
-
-GCRecMutex::~GCRecMutex()
-{
- if(--gcInitCount == 0)
- {
- delete _m;
- }
-}
-
-GCRecMutexInit::GCRecMutexInit()
-{
- if(gcInitCount++ == 0)
- {
- gcRecMutex._m = new RecMutex;
- }
-}
-
-GCRecMutexInit::~GCRecMutexInit()
-{
- if(--gcInitCount == 0)
- {
- delete gcRecMutex._m;
- }
-}