File: main.cpp

package info (click to toggle)
ace 6.3.3%2Bdfsg-1.2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 49,100 kB
  • sloc: cpp: 331,493; perl: 32,764; ansic: 20,167; sh: 3,996; exp: 787; python: 672; yacc: 511; xml: 330; lex: 158; lisp: 116; makefile: 83; csh: 20; tcl: 5
file content (32 lines) | stat: -rw-r--r-- 727 bytes parent folder | download | duplicates (6)
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
#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;
}