summaryrefslogtreecommitdiff
path: root/TAO/tao/RTCORBA/RT_Mutex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/RTCORBA/RT_Mutex.cpp')
-rw-r--r--TAO/tao/RTCORBA/RT_Mutex.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/TAO/tao/RTCORBA/RT_Mutex.cpp b/TAO/tao/RTCORBA/RT_Mutex.cpp
index 57e18ff2942..48c3e5c36d4 100644
--- a/TAO/tao/RTCORBA/RT_Mutex.cpp
+++ b/TAO/tao/RTCORBA/RT_Mutex.cpp
@@ -13,7 +13,7 @@ TAO_RT_Mutex::~TAO_RT_Mutex (void)
}
void
-TAO_RT_Mutex::lock (CORBA::Environment &ACE_TRY_ENV)
+TAO_RT_Mutex::lock (TAO_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
if (this->mu_.acquire () != 0)
@@ -21,7 +21,7 @@ TAO_RT_Mutex::lock (CORBA::Environment &ACE_TRY_ENV)
}
void
-TAO_RT_Mutex::unlock (CORBA::Environment &ACE_TRY_ENV)
+TAO_RT_Mutex::unlock (TAO_ENV_SINGLE_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
if (this->mu_.release () != 0)
@@ -29,8 +29,8 @@ TAO_RT_Mutex::unlock (CORBA::Environment &ACE_TRY_ENV)
}
CORBA::Boolean
-TAO_RT_Mutex::try_lock (TimeBase::TimeT wait_time,
- CORBA::Environment &ACE_TRY_ENV)
+TAO_RT_Mutex::try_lock (TimeBase::TimeT wait_time
+ TAO_ENV_ARG_DECL)
ACE_THROW_SPEC ((CORBA::SystemException))
{
int result;