diff options
author | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-11 06:01:44 +0000 |
---|---|---|
committer | nobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1997-12-11 06:01:44 +0000 |
commit | 29bc99605b3001024214877b685194229b053770 (patch) | |
tree | f893f1e4b64e027ecb12bd3ad323b84d9ba58a26 /ace/Service_Main.cpp | |
parent | 00318e0f86593079270e84624efbcac2b1285aff (diff) | |
download | ATCD-poa_start.tar.gz |
This commit was manufactured by cvs2svn to create tag 'poa_start'.poa_start
Diffstat (limited to 'ace/Service_Main.cpp')
-rw-r--r-- | ace/Service_Main.cpp | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/ace/Service_Main.cpp b/ace/Service_Main.cpp deleted file mode 100644 index cddca791ed1..00000000000 --- a/ace/Service_Main.cpp +++ /dev/null @@ -1,33 +0,0 @@ -// Service_Main.cpp -// $Id$ - -// This is an example of a canonical Service Configurator daemon's -// main() function. Note how this driver file is completely generic -// and may be used to configure almost any type of network daemon. - -#define ACE_BUILD_DLL -#include "ace/Service_Config.h" -#include "ace/Reactor.h" - -int -sc_main (int argc, char *argv[]) -{ - ACE_TRACE ("sc_main"); - ACE_Service_Config daemon; - - if (daemon.open (argc, argv) == -1) - ACE_ERROR ((LM_ERROR, "%p\n%a", "open", 1)); - - // Create an adapter to end the event loop. - ACE_Sig_Adapter sa ((ACE_Sig_Handler_Ex) ACE_Reactor::end_event_loop); - - // Register a signal handler. - ACE_Reactor::instance()->register_handler (SIGINT, &sa); - - // Run forever, performing the configured services until we are shut - // down by a SIGINT/SIGQUIT signal. - - ACE_Reactor::run_event_loop (); - - return 0; -} |