summaryrefslogtreecommitdiff
path: root/ciao/ComponentServer/CIAO_ComponentServer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ciao/ComponentServer/CIAO_ComponentServer.cpp')
-rw-r--r--ciao/ComponentServer/CIAO_ComponentServer.cpp47
1 files changed, 0 insertions, 47 deletions
diff --git a/ciao/ComponentServer/CIAO_ComponentServer.cpp b/ciao/ComponentServer/CIAO_ComponentServer.cpp
deleted file mode 100644
index 11960829c16..00000000000
--- a/ciao/ComponentServer/CIAO_ComponentServer.cpp
+++ /dev/null
@@ -1,47 +0,0 @@
-/**
- * @file CIAO_ComponentServer.cpp
- * @author William R. Otte
- * $Id$
- *
- * Implementation and main for CIAO_ComponentServer.
- */
-
-#include "CIAO_ComponentServer_Task.h"
-#include "ciao/Logger/Log_Macros.h"
-
-int ACE_TMAIN (int argc, ACE_TCHAR **argv)
-{
- // Tracing disabled by default
- CIAO_DISABLE_TRACE ();
-
- CIAO_TRACE ("CIAO_ComponentServer::ACE_TMAIN");
-
- int retval = 0;
- try
- {
- CIAO::Deployment::ComponentServer_Task cs (argc, argv);
- cs.run ();
-
- // Wait for the threads to exit.
- //ACE_Thread_Manager::instance ()->wait ();
- }
- catch (const CIAO::Deployment::ComponentServer_Task::Error &e)
- {
- CIAO_ERROR (1, (LM_ERROR, CLINFO "CIAO_ComponentServer main: Caught ComponentServer exception: %C\n",
- e.err_.c_str ()));
- retval = -1;
- }
- catch (const CORBA::Exception& ex)
- {
- ex._tao_print_exception ("CIAO_ComponentServer main: Caught corba exception:");
- retval = -1;
- }
- catch (...)
- {
- CIAO_ERROR (1, (LM_ERROR, CLINFO "CIAO_ComponentServer main: Caught unknown exception.\n"));
- retval = -1;
- }
-
- return retval;
-}
-