summaryrefslogtreecommitdiff
path: root/CIAO/examples/DevGuideExamples/Messenger/Runnable_exec_i.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'CIAO/examples/DevGuideExamples/Messenger/Runnable_exec_i.cpp')
-rw-r--r--CIAO/examples/DevGuideExamples/Messenger/Runnable_exec_i.cpp59
1 files changed, 0 insertions, 59 deletions
diff --git a/CIAO/examples/DevGuideExamples/Messenger/Runnable_exec_i.cpp b/CIAO/examples/DevGuideExamples/Messenger/Runnable_exec_i.cpp
deleted file mode 100644
index 6b37fb383ca..00000000000
--- a/CIAO/examples/DevGuideExamples/Messenger/Runnable_exec_i.cpp
+++ /dev/null
@@ -1,59 +0,0 @@
-//
-// **** Code generated by the ****
-// **** Component Integrated ACE ORB (CIAO) CIDL Compiler ****
-// CIAO has been developed by:
-// Center for Distributed Object Computing
-// Washington University
-// St. Louis, MO
-// USA
-// http://www.cs.wustl.edu/~schmidt/doc-center.html
-// CIDL Compiler has been developed by:
-// Institute for Software Integrated Systems
-// Vanderbilt University
-// Nashville, TN
-// USA
-// http://www.isis.vanderbilt.edu/
-//
-// Information about CIAO is available at:
-// http://www.dre.vanderbilt.edu/CIAO
-
-#include "Runnable_exec_i.h"
-
-namespace CIAO_Messenger_Impl
-{
- //==================================================================
- // Facet Executor Implementation Class: Runnable_exec_i
- //==================================================================
-
- Runnable_exec_i::Runnable_exec_i ()
- {
- // initially in "stopped" state
- this->stop();
- }
-
- Runnable_exec_i::~Runnable_exec_i (void)
- {
- // don't own anything
- }
-
- // Operations from ::Runnable
-
- void
- Runnable_exec_i::start ()
- {
- this->run_lock_.release();
- }
-
- void
- Runnable_exec_i::stop ()
- {
- this->run_lock_.acquire();
- }
-
- TAO_SYNCH_MUTEX&
- Runnable_exec_i::get_run_lock ()
- {
- return this->run_lock_;
- }
-}
-