summaryrefslogtreecommitdiff
path: root/ChangeLog-97b
diff options
context:
space:
mode:
authorirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-10 20:41:43 +0000
committerirfan <irfan@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-10-10 20:41:43 +0000
commite6bc487be7a6a476d9e3a585133673a97866bff9 (patch)
treeac06dc96f5981ad24f1a2b893a8b8172439159e3 /ChangeLog-97b
parent996ffae697d19d79bc022d71a5944bb652283225 (diff)
downloadATCD-e6bc487be7a6a476d9e3a585133673a97866bff9.tar.gz
*** empty log message ***
Diffstat (limited to 'ChangeLog-97b')
-rw-r--r--ChangeLog-97b21
1 files changed, 21 insertions, 0 deletions
diff --git a/ChangeLog-97b b/ChangeLog-97b
index e3653994077..e8c17920a1b 100644
--- a/ChangeLog-97b
+++ b/ChangeLog-97b
@@ -1,3 +1,24 @@
+Fri Oct 10 15:21:07 1997 <irfan@TWOSTEP>
+
+ * ace/Connector.cpp (create_AST): The register_handler() method
+ now needs to explicitly be given the handle to wait on. This is
+ because the get_handle() method of Connector has been
+ depricated.
+
+ * examples/Connection/non_blocking/test_sock_connector.cpp (main):
+ Since this test waits on the STDIN handle to become ready, we
+ have to make sure that the WFMO_Reactor is used on Win32. This
+ is necessary since select() on NT does not support waiting on
+ STDIN.
+
+ * examples/Connection/non_blocking/CPP-connector.cpp (open): On
+ Win32, the std handle must be registered directly (and not as a
+ socket). On non-Win32, the std handle must be registered as a
+ normal handle with the READ mask. Since on Win32, STDIN is used
+ directly as an waitable handle, handle_signal will be called
+ instead of handle_input. Therefore, we had to add handle_signal
+ to the event_handler.
+
Fri Oct 10 15:16:47 1997 Nanbor Wang <nw1@cumbia.cs.wustl.edu>
* ace/WFMO_Reactor.{h,cpp}: