diff options
author | Benoit Foucher <benoit@zeroc.com> | 2008-06-06 18:31:39 +0200 |
---|---|---|
committer | Benoit Foucher <benoit@zeroc.com> | 2008-06-06 18:31:39 +0200 |
commit | d2f6fad0a043e60ed450cf17cbdd85341cfcc6ba (patch) | |
tree | 3a5711cfe1b206f26d000a6630c721c9608e850d /cppe/src/IceE/Shared.cpp | |
parent | Bug 3014 - isAbsolute incorrect (diff) | |
download | ice-d2f6fad0a043e60ed450cf17cbdd85341cfcc6ba.tar.bz2 ice-d2f6fad0a043e60ed450cf17cbdd85341cfcc6ba.tar.xz ice-d2f6fad0a043e60ed450cf17cbdd85341cfcc6ba.zip |
Removed SL and IceE code
Diffstat (limited to 'cppe/src/IceE/Shared.cpp')
-rw-r--r-- | cppe/src/IceE/Shared.cpp | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/cppe/src/IceE/Shared.cpp b/cppe/src/IceE/Shared.cpp deleted file mode 100644 index d9bfa05ea91..00000000000 --- a/cppe/src/IceE/Shared.cpp +++ /dev/null @@ -1,67 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2008 ZeroC, Inc. All rights reserved. -// -// This copy of Ice-E is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -#include <IceE/Shared.h> - -using namespace Ice; - -IceUtil::SimpleShared::SimpleShared() : - _ref(0), - _noDelete(false) -{ -} - -IceUtil::SimpleShared::SimpleShared(const SimpleShared&) : - _ref(0), - _noDelete(false) -{ -} - -IceUtil::Shared::Shared() : -#ifndef ICEE_HAS_ATOMIC_FUNCTIONS - _ref(0), -#endif - _noDelete(false) -{ -#ifdef ICEE_HAS_ATOMIC_FUNCTIONS - ice_atomic_set(&_ref, 0); -#endif -} - -IceUtil::Shared::Shared(const Shared&) : -#ifndef ICEE_HAS_ATOMIC_FUNCTIONS - _ref(0), -#endif - _noDelete(false) -{ -#ifdef ICEE_HAS_ATOMIC_FUNCTIONS - ice_atomic_set(&_ref, 0); -#endif -} - -int -IceUtil::Shared::__getRef() const -{ -#if defined(_WIN32) - return InterlockedExchangeAdd(const_cast<LONG*>(&_ref), 0); -#elif defined(ICEE_HAS_ATOMIC_FUNCTIONS) - return ice_atomic_exchange_add(0, const_cast<ice_atomic_t*>(&_ref)); -#else - _mutex.lock(); - int ref = _ref; - _mutex.unlock(); - return ref; -#endif -} - -void -IceUtil::Shared::__setNoDelete(bool b) -{ - _noDelete = b; -} |