summaryrefslogtreecommitdiff
path: root/TAO/tao/Connection_Handler.inl
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/tao/Connection_Handler.inl')
-rw-r--r--TAO/tao/Connection_Handler.inl42
1 files changed, 13 insertions, 29 deletions
diff --git a/TAO/tao/Connection_Handler.inl b/TAO/tao/Connection_Handler.inl
index 49ac55ad5b8..1be59aafb4b 100644
--- a/TAO/tao/Connection_Handler.inl
+++ b/TAO/tao/Connection_Handler.inl
@@ -10,6 +10,19 @@ TAO_Connection_Handler::TAO_Connection_Handler (void)
{
}
+/*ACE_INLINE CORBA::Boolean
+TAO_Connection_Handler::is_registered (void)
+{
+ return this->is_registered_;
+}
+
+ACE_INLINE void
+TAO_Connection_Handler::is_registered (CORBA::Boolean flag)
+{
+ this->is_registered_ = flag;
+}
+*/
+
ACE_INLINE TAO_ORB_Core *
TAO_Connection_Handler::orb_core (void)
{
@@ -27,32 +40,3 @@ TAO_Connection_Handler::transport (void)
{
return this->transport_;
}
-
-
-ACE_INLINE int
-TAO_Connection_Handler::incr_pending_upcalls (void)
-{
- ACE_GUARD_RETURN (ACE_Lock,
- ace_mon,
- *this->pending_upcall_lock_, -1);
-
- return ++this->pending_upcalls_;
-
-
-}
-
-ACE_INLINE int
-TAO_Connection_Handler::decr_pending_upcalls (void)
-{
- ACE_GUARD_RETURN (ACE_Lock,
- ace_mon,
- *this->pending_upcall_lock_, -1);
-
- return --this->pending_upcalls_;
-}
-
-ACE_INLINE int
-TAO_Connection_Handler::pending_upcalls (void) const
-{
- return this->pending_upcalls_;
-}