summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorharrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-19 23:26:12 +0000
committerharrison <harrison@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-02-19 23:26:12 +0000
commitf33069ba4efb2507f47ecd2a204ffd93698e9a5b (patch)
tree11cc5d822ba0152a281f9c9f3b9ce057453280d7
parent180512fd85416df0d71221099129fdafa69740d6 (diff)
downloadATCD-f33069ba4efb2507f47ecd2a204ffd93698e9a5b.tar.gz
Changes.
-rw-r--r--ChangeLog-97a16
1 files changed, 16 insertions, 0 deletions
diff --git a/ChangeLog-97a b/ChangeLog-97a
index 7788ad7c594..f441a23f3aa 100644
--- a/ChangeLog-97a
+++ b/ChangeLog-97a
@@ -1,5 +1,21 @@
Wed Feb 19 14:41:18 1997 Tim H. Harrison <harrison@lambada.cs.wustl.edu>
+ * ace/Reactor.cpp: Modified to use timer_queue_->gettimeofday().
+
+ * ace/Proactor.cpp: Modified to use timer_queue_->gettimeofday().
+
+ * ace/ReactorEx.cpp: Modified to use
+ timer_queue_->gettimeofday(). Also had to modify the
+ ReactorEx_Notify mechanism to use the ReactorEx's timer queue to
+ call gettimeofday.
+
+ * ace/Timer_Queue.h: Added a gettimeofday method. This allows
+ applications to replace the timer mechanism used by the
+ Reactors. The default implementation returns
+ ACE_OS::gettimeofday. However, a real-time application can
+ inherit from Timer_Queue and override gettimeofday to return a
+ value from a high resolution timer.
+
* STL/bool.h: Changed the defines for type bool. First, bool is no
longer defined for WIN32 since yvals.h typedefs it already.
Also, I moved the defines out the namespace. I'm not sure if