summaryrefslogtreecommitdiff
path: root/TAO/tao/Resume_Handle.cpp
diff options
context:
space:
mode:
authorbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-05 19:52:02 +0000
committerbala <bala@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2001-07-05 19:52:02 +0000
commitc7184f422fad782d765dbb1fa3b556ff784d5d42 (patch)
treeeac34028a51be4faf8b426b23bba109e32bfbe92 /TAO/tao/Resume_Handle.cpp
parent15e733bfefc13e95e2211ea9e8bd0b97b6d58858 (diff)
downloadATCD-c7184f422fad782d765dbb1fa3b556ff784d5d42.tar.gz
*** empty log message ***
Diffstat (limited to 'TAO/tao/Resume_Handle.cpp')
-rw-r--r--TAO/tao/Resume_Handle.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/TAO/tao/Resume_Handle.cpp b/TAO/tao/Resume_Handle.cpp
deleted file mode 100644
index af94eefa37e..00000000000
--- a/TAO/tao/Resume_Handle.cpp
+++ /dev/null
@@ -1,24 +0,0 @@
-#include "Resume_Handle.h"
-#include "ORB_Core.h"
-
-
-#if !defined (__ACE_INLINE__)
-# include "Resume_Handle.inl"
-#endif /* __ACE_INLINE__ */
-
-ACE_RCSID(tao, Resume_Handle, "$Id$")
-
-void
-TAO_Resume_Handle::resume_handle (void)
-{
- // If we have a complete message, just resume the handler
- // Resume the handler.
- if (this->orb_core_ &&
- this->orb_core_->reactor ()->resumable_handler () &&
- this->flag_ == TAO_HANDLE_RESUMABLE &&
- this->handle_ != ACE_INVALID_HANDLE)
- this->orb_core_->reactor ()->resume_handler (this->handle_);
-
- // Set the flag, so that we dont resume again..
- this->flag_ = TAO_HANDLE_ALREADY_RESUMED;
-}