// ********************************************************************** // // Copyright (c) 2003-2007 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 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(&_ref), 0); #elif defined(ICEE_HAS_ATOMIC_FUNCTIONS) return ice_atomic_exchange_add(0, const_cast(&_ref)); #else _mutex.lock(); int ref = _ref; _mutex.unlock(); return ref; #endif } void IceUtil::Shared::__setNoDelete(bool b) { _noDelete = b; }