summaryrefslogtreecommitdiff
path: root/examples/Connection/blocking/test_spipe_acceptor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'examples/Connection/blocking/test_spipe_acceptor.cpp')
-rw-r--r--examples/Connection/blocking/test_spipe_acceptor.cpp36
1 files changed, 0 insertions, 36 deletions
diff --git a/examples/Connection/blocking/test_spipe_acceptor.cpp b/examples/Connection/blocking/test_spipe_acceptor.cpp
deleted file mode 100644
index 549690ebf43..00000000000
--- a/examples/Connection/blocking/test_spipe_acceptor.cpp
+++ /dev/null
@@ -1,36 +0,0 @@
-// $Id$
-
-// ACE_SPIPE Server.
-
-#include "SPIPE-acceptor.h"
-
-ACE_RCSID(blocking, test_spipe_acceptor, "$Id$")
-
-#if ((defined (ACE_WIN32) && !defined (ACE_HAS_WINCE)) || (defined (ACE_HAS_AIO_CALLS)))
-
-int
-ACE_TMAIN (int argc, ACE_TCHAR *argv[])
-{
- // Perform Service_Config initializations
- ACE_Service_Config daemon (argv[0]);
-
- IPC_Server peer_acceptor;
-
- if (peer_acceptor.init (argc, argv) == -1)
- ACE_ERROR_RETURN ((LM_ERROR, ACE_TEXT ("%p\n"), ACE_TEXT ("init")), -1);
-
- return peer_acceptor.svc ();
-}
-
-#else
-
-int
-main (int, char *[])
-{
- ACE_DEBUG ((LM_INFO,
- ACE_TEXT ("Asynchronous IO is unsupported.\n")));
-
- return 0;
-}
-
-#endif