summaryrefslogtreecommitdiff
path: root/apps/JAWS/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'apps/JAWS/main.cpp')
-rw-r--r--apps/JAWS/main.cpp22
1 files changed, 0 insertions, 22 deletions
diff --git a/apps/JAWS/main.cpp b/apps/JAWS/main.cpp
deleted file mode 100644
index 13261785c06..00000000000
--- a/apps/JAWS/main.cpp
+++ /dev/null
@@ -1,22 +0,0 @@
-// main.cpp
-
-#include "ace/Service_Config.h"
-
- #include "HTTP_Server.h"
-
-ACE_STATIC_SVC_REQUIRE(HTTP_Server)
-
-int
-main (int argc, char *argv[])
-{
- ACE_Service_Config daemon;
-
- if (daemon.open (argc, argv) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "open"), 1);
-
- // Run forever, performing the configured services until we receive
- // a SIGINT.
-
- daemon.run_reactor_event_loop ();
- return 0;
-}