summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2010-04-21 13:37:41 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2010-04-21 13:37:41 +0000
commit0437a01835c1f59f1c7b4b36aaf55d94e8267417 (patch)
tree2092ce21463980b0e50d25298c5c7c30f85cb97e
parentfad5b4e3e4fc3d01e5efb42ef67e1202a79a0dc9 (diff)
downloadATCD-0437a01835c1f59f1c7b4b36aaf55d94e8267417.tar.gz
Wed Apr 21 13:36:30 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* examples/Connection/blocking/SPIPE-connector.cpp: Use Reactor instead of Proactor, thanks to Dave <dwh0403 at 163 dot com> for reporting this
-rw-r--r--ACE/ChangeLog6
-rw-r--r--ACE/examples/Connection/blocking/SPIPE-connector.cpp3
2 files changed, 7 insertions, 2 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 43883e24923..7f110bf2821 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,9 @@
+Wed Apr 21 13:36:30 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
+
+ * examples/Connection/blocking/SPIPE-connector.cpp:
+ Use Reactor instead of Proactor, thanks to Dave <dwh0403 at 163 dot com>
+ for reporting this
+
Tue Apr 20 13:02:46 UTC 2010 Johnny Willemsen <jwillemsen@remedy.nl>
* ace/Atomic_Op.h:
diff --git a/ACE/examples/Connection/blocking/SPIPE-connector.cpp b/ACE/examples/Connection/blocking/SPIPE-connector.cpp
index 071afec6a79..bd7c0691b52 100644
--- a/ACE/examples/Connection/blocking/SPIPE-connector.cpp
+++ b/ACE/examples/Connection/blocking/SPIPE-connector.cpp
@@ -7,7 +7,6 @@
#include "ace/OS_NS_string.h"
#include "ace/SPIPE_Addr.h"
#include "ace/SPIPE_Connector.h"
-#include "ace/Proactor.h"
#include "ace/Get_Opt.h"
#include "ace/Truncate.h"
#include "ace/OS_NS_unistd.h"
@@ -133,7 +132,7 @@ Peer_Handler::display_menu (void)
IPC_Client::IPC_Client (void)
: iterations_ (0),
- done_handler_ (ACE_Sig_Handler_Ex (ACE_Proactor::end_event_loop))
+ done_handler_ (ACE_Sig_Handler_Ex (ACE_Reactor::end_event_loop))
{
ACE_OS::strcpy (rendezvous_, ACE_TEXT ("acepipe"));
}