summaryrefslogtreecommitdiff
path: root/TAO/tao/Connection_Handler.inl
diff options
context:
space:
mode:
authorbala <balanatarajan@users.noreply.github.com>2002-10-22 04:05:54 +0000
committerbala <balanatarajan@users.noreply.github.com>2002-10-22 04:05:54 +0000
commit34601941fc60330b7f79f0fc72be1ff087b3e242 (patch)
treed880c443ad8630445fe84dc1edb257706575a052 /TAO/tao/Connection_Handler.inl
parent312ed9cf7ffc44100f5a88c2178d067341d500a5 (diff)
downloadATCD-34601941fc60330b7f79f0fc72be1ff087b3e242.tar.gz
ChangeLogTag:Mon Oct 21 22:45:02 2002 Balachandran Natarajan <bala@isis-server.isis.vanderbilt.edu>
Diffstat (limited to 'TAO/tao/Connection_Handler.inl')
-rw-r--r--TAO/tao/Connection_Handler.inl19
1 files changed, 1 insertions, 18 deletions
diff --git a/TAO/tao/Connection_Handler.inl b/TAO/tao/Connection_Handler.inl
index 0b8117b0b9c..5c1df839f72 100644
--- a/TAO/tao/Connection_Handler.inl
+++ b/TAO/tao/Connection_Handler.inl
@@ -2,16 +2,6 @@
//
//$Id$
-ACE_INLINE
-TAO_Connection_Handler::TAO_Connection_Handler (void)
- : orb_core_ (0),
- transport_ (0),
- tss_resources_ (0),
- pending_upcalls_ (1),
- pending_upcall_lock_ (0)
-{
-}
-
ACE_INLINE TAO_ORB_Core *
TAO_Connection_Handler::orb_core (void)
{
@@ -33,8 +23,7 @@ TAO_Connection_Handler::transport (void)
ACE_INLINE int
TAO_Connection_Handler::is_connect_complete (void) const
{
- return this->successful () ||
- this->error_detected ();
+ return this->successful () || this->error_detected ();
}
ACE_INLINE int
@@ -42,9 +31,3 @@ TAO_Connection_Handler::is_connect_successful (void) const
{
return (this->error_detected () == 0);
}
-
-ACE_INLINE int
-TAO_Connection_Handler::pending_upcalls (void) const
-{
- return this->pending_upcalls_;
-}