summaryrefslogtreecommitdiff
path: root/TAO/CIAO/DAnCE/RepositoryManager/RepositoryManager.cpp
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-04-12 14:49:02 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2006-04-12 14:49:02 +0000
commitcbe8aa5d5be1d4679ae0c4e30baaea24fbae416c (patch)
treeb9f7b9d73fe1ba0675ac5233476b66a61b8f8521 /TAO/CIAO/DAnCE/RepositoryManager/RepositoryManager.cpp
parenta2dd5f907273d7561f3ccac51d7fffc8bb4b6893 (diff)
downloadATCD-cbe8aa5d5be1d4679ae0c4e30baaea24fbae416c.tar.gz
This commit was manufactured by cvs2svn to create branch
'escher_x_4_9_integration_point'.
Diffstat (limited to 'TAO/CIAO/DAnCE/RepositoryManager/RepositoryManager.cpp')
-rw-r--r--TAO/CIAO/DAnCE/RepositoryManager/RepositoryManager.cpp25
1 files changed, 14 insertions, 11 deletions
diff --git a/TAO/CIAO/DAnCE/RepositoryManager/RepositoryManager.cpp b/TAO/CIAO/DAnCE/RepositoryManager/RepositoryManager.cpp
index b8a94492920..744f5df5a02 100644
--- a/TAO/CIAO/DAnCE/RepositoryManager/RepositoryManager.cpp
+++ b/TAO/CIAO/DAnCE/RepositoryManager/RepositoryManager.cpp
@@ -25,32 +25,35 @@ using namespace std;
namespace
{
-/// Name of the file holding the IOR of the RM
+///name of the file holding the IOR of the RM
const char * rm_ior = "RepositoryManagerDeamon.ior";
-/// Default number of worker threads to run in the multi-threaded RM
+///default number of worker threads to run in the multi-threaded RM
unsigned int nthreads = 3;
}
-/**
- * @class Worker
- *
- * Class that implements the service routine of the worker threads
- * of the repository manager
- */
+///Class that implements the service routine of the worker threads
+///of the repository manager
+
class Worker : public ACE_Task_Base
{
+ // = TITLE
+ // Run a server thread
+ //
+ // = DESCRIPTION
+ // Use the ACE_Task_Base class to run server threads
+ //
public:
- /// ctor
Worker (CORBA::ORB_ptr orb);
+ // ctor
- /// The thread entry point.
virtual int svc (void);
+ // The thread entry point.
private:
- /// The orb
CORBA::ORB_var orb_;
+ // The orb
};