summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/Concurrency/CC_LockSetFactory.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/orbsvcs/orbsvcs/Concurrency/CC_LockSetFactory.cpp')
-rw-r--r--TAO/orbsvcs/orbsvcs/Concurrency/CC_LockSetFactory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/orbsvcs/orbsvcs/Concurrency/CC_LockSetFactory.cpp b/TAO/orbsvcs/orbsvcs/Concurrency/CC_LockSetFactory.cpp
index bb3c86dd21d..abe9a2f728b 100644
--- a/TAO/orbsvcs/orbsvcs/Concurrency/CC_LockSetFactory.cpp
+++ b/TAO/orbsvcs/orbsvcs/Concurrency/CC_LockSetFactory.cpp
@@ -35,10 +35,10 @@ CC_LockSetFactory::create (CORBA::Environment &ACE_TRY_ENV)
ACE_GUARD_RETURN (ACE_SYNCH_MUTEX, ace_mon, this->lock_, CosConcurrencyControl::LockSet::_nil ());
- TAO_IN_ENV.exception (new CORBA::NO_MEMORY ());
+ TAO_IN_ENV.exception (new CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
ACE_NEW_THROW_EX (ls,
CC_LockSet,
- CORBA::NO_MEMORY());
+ CORBA::NO_MEMORY(CORBA::COMPLETED_NO));
ACE_CHECK_RETURN (CosConcurrencyControl::LockSet::_nil ());
return ls->_this (ACE_TRY_ENV);
@@ -54,10 +54,10 @@ CC_LockSetFactory::create_related (CosConcurrencyControl::LockSet_ptr which,
// @@ I commented out the following statement becuase it doesn't make any
// sense at all. -- Nanbor
- // TAO_IN_ENV.exception (new CORBA::NO_MEMORY ());
+ // TAO_IN_ENV.exception (new CORBA::NO_MEMORY (CORBA::COMPLETED_NO));
ACE_NEW_THROW_EX (ls,
CC_LockSet (which),
- CORBA::NO_MEMORY());
+ CORBA::NO_MEMORY(CORBA::COMPLETED_NO));
ACE_CHECK_RETURN (CosConcurrencyControl::LockSet::_nil ());
return ls->_this (ACE_TRY_ENV);