blob: b96c06fe7db9c1a830b28867fa70a3fbddc7618c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// 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"
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_Service_Config::end_reactor_event_loop);
// Register a signal handler.
ACE_Service_Config::reactor ()->register_handler (SIGINT, &sa);
// Run forever, performing the configured services until we are shut
// down by a SIGINT/SIGQUIT signal.
while (daemon.reactor_event_loop_done () == 0)
daemon.run_reactor_event_loop ();
return 0;
}
|