summaryrefslogtreecommitdiff
path: root/TAO/tao/Asynch_Invocation.cpp
diff options
context:
space:
mode:
authorcoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-23 21:44:14 +0000
committercoryan <coryan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-23 21:44:14 +0000
commitfc25a82bf47f6d125a67a57be6e76adb236f2974 (patch)
treed340889aedb4da1e94f1ec15e54fedd7c1e2bfaf /TAO/tao/Asynch_Invocation.cpp
parent4d7f496c159fd367c838d502c9e982008d79abf4 (diff)
downloadATCD-fc25a82bf47f6d125a67a57be6e76adb236f2974.tar.gz
ChangeLogTag:Mon Aug 23 16:43:37 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
Diffstat (limited to 'TAO/tao/Asynch_Invocation.cpp')
-rw-r--r--TAO/tao/Asynch_Invocation.cpp17
1 files changed, 6 insertions, 11 deletions
diff --git a/TAO/tao/Asynch_Invocation.cpp b/TAO/tao/Asynch_Invocation.cpp
index 7698d7e4db6..13808315557 100644
--- a/TAO/tao/Asynch_Invocation.cpp
+++ b/TAO/tao/Asynch_Invocation.cpp
@@ -8,6 +8,7 @@
#include "tao/Stub.h"
#include "tao/Principal.h"
#include "tao/Object_KeyC.h"
+#include "tao/Transport_Mux_Strategy.h"
#include "tao/debug.h"
#if !defined (__ACE_INLINE__)
@@ -67,30 +68,24 @@ TAO_GIOP_Twoway_Asynch_Invocation::start (CORBA::Environment &ACE_TRY_ENV)
}
int
-TAO_GIOP_Twoway_Asynch_Invocation::invoke (CORBA::ExceptionList &exceptions,
+TAO_GIOP_Twoway_Asynch_Invocation::invoke (CORBA::ExceptionList & /*exceptions*/,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::SystemException,CORBA::UnknownUserException))
{
TAO_FUNCTION_PP_TIMEPROBE (TAO_GIOP_ASYNCH_INVOCATION_INVOKE_START);
- int retval = this->invoke_i (ACE_TRY_ENV);
- ACE_CHECK_RETURN (retval);
-
- return retval;
+ return this->invoke_i (ACE_TRY_ENV);
}
int
-TAO_GIOP_Twoway_Asynch_Invocation::invoke (TAO_Exception_Data *excepts,
- CORBA::ULong except_count,
+TAO_GIOP_Twoway_Asynch_Invocation::invoke (TAO_Exception_Data * /*excepts*/,
+ CORBA::ULong /*except_count*/,
CORBA::Environment &ACE_TRY_ENV)
ACE_THROW_SPEC ((CORBA::Exception))
{
TAO_FUNCTION_PP_TIMEPROBE (TAO_GIOP_ASYNCH_INVOCATION_INVOKE_START);
- int retval = this->invoke_i (ACE_TRY_ENV);
- ACE_CHECK_RETURN (retval);
-
- return retval;
+ return this->invoke_i (ACE_TRY_ENV);
}
int