summaryrefslogtreecommitdiff
path: root/ACE/examples/Connection/non_blocking/test_spipe_connector.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ACE/examples/Connection/non_blocking/test_spipe_connector.cpp')
-rw-r--r--ACE/examples/Connection/non_blocking/test_spipe_connector.cpp40
1 files changed, 0 insertions, 40 deletions
diff --git a/ACE/examples/Connection/non_blocking/test_spipe_connector.cpp b/ACE/examples/Connection/non_blocking/test_spipe_connector.cpp
deleted file mode 100644
index fd5641f482d..00000000000
--- a/ACE/examples/Connection/non_blocking/test_spipe_connector.cpp
+++ /dev/null
@@ -1,40 +0,0 @@
-// $Id$
-
-// ACE_SPIPE Client.
-
-#include "ace/SPIPE_Connector.h"
-#include "ace/SPIPE_Addr.h"
-#include "CPP-connector.h"
-
-ACE_RCSID(non_blocking, test_spipe_connector, "$Id$")
-
-#if !defined (ACE_WIN32)
-typedef Peer_Handler<ACE_SPIPE_STREAM> PEER_HANDLER;
-typedef IPC_Client<PEER_HANDLER, ACE_SPIPE_CONNECTOR> IPC_CLIENT;
-
-int
-ACE_TMAIN (int argc, ACE_TCHAR *argv[])
-{
- // Perform Service_Config initializations
- ACE_Service_Config daemon (argv[0]);
-
- IPC_CLIENT peer_connector;
-
- if (peer_connector.init (argc, argv) == -1)
- ACE_ERROR_RETURN ((LM_ERROR,
- ACE_TEXT ("%p\n"),
- ACE_TEXT ("init")),
- -1);
-
- return peer_connector.svc ();
-}
-
-#else
-int
-ACE_TMAIN (int, ACE_TCHAR *[])
-{
- ACE_ERROR_RETURN ((LM_ERROR,
- "This test is not ported to Win32 (yet)\n"),
- -1);
-}
-#endif /* !ACE_WIN32 */