blob: a041a9822c17d9bd052a807eb692e6ef8cfb3ae8 (
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
|
// $Id$
#include "ace/Log_Msg.h"
#include "ace/Reactor.h"
#include "ace/Select_Reactor.h"
#include "ace/Service_Config.h"
#include "ace/Thread_Manager.h"
#include "jaws3/Event_Dispatcher.h"
#include "jaws3/Signal_Task.h"
int
ACE_TMAIN(int argc, ACE_TCHAR *argv[])
{
ACE_REACTOR_INSTANCE_INIT;
JAWS_Signal_Task::instance ();
if (ACE_Service_Config::open (argc, argv) == -1
&& errno != ENOENT)
ACE_ERROR_RETURN ((LM_ERROR,
ACE_TEXT ("%p\n"),
ACE_TEXT ("open")),
1);
// Run forever, performing the configured services until we
// shutdown.
JAWS_Event_Dispatcher::run_event_loop ();
ACE_Thread_Manager::instance ()->wait ();
return 0;
}
|