summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-20 05:21:06 +0000
committernw1 <nw1@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1997-12-20 05:21:06 +0000
commitc560cb846f20696e059545484f4f3dc9702912b7 (patch)
tree34fccf35795a033954b3e3975bedfc8c56a4e86b
parent0efd9a7da7517611133e6dc7f7c99e4ad2ac4ef7 (diff)
downloadATCD-c560cb846f20696e059545484f4f3dc9702912b7.tar.gz
*** empty log message ***
-rw-r--r--ChangeLog-98a19
1 files changed, 13 insertions, 6 deletions
diff --git a/ChangeLog-98a b/ChangeLog-98a
index fa131ad8a9a..38edc8fb2ba 100644
--- a/ChangeLog-98a
+++ b/ChangeLog-98a
@@ -1,3 +1,10 @@
+Fri Dec 19 23:20:42 1997 Nanbor Wang <nw1@merengue.cs.wustl.edu>
+
+ * tests/IOStream_Test.cpp (client): Removed an extra read.
+
+ * ace/OS.h: ACE_SEH_FINALLY should always be executed on UNIX
+ platforms.
+
Fri Dec 19 18:49:26 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
* ace/IOStream_T.i: Enhanced ACE_IOStream and its companions as
@@ -14,21 +21,21 @@ Fri Dec 19 18:49:26 1997 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Thanks to James Johnson <jcej@lads.com> for these fixes.
- * ace/Log_Record.i: Removed a no-op assignment to Time_Value
+ * ace/Log_Record.i: Removed a no-op assignment to Time_Value
in the encode() method. Thanks to Patrick J. McNerthney
<pat@thememedia.com> for reporting this.
-
+
* ace/Log_Record.i: The time stamp put into the ACE_Log_Record
gets all messed up when the ACE_Log_Record is transmitted to the
Server_Logging_Handler and the client is run on a little-endian
architecture. This is because the ACE_Log_Record::encode method
- does:
-
+ does:
+
this->time_stamp_ = ACE_Time_Value
-
+
htonl (this->time_stamp_.sec ()),
htonl (this->time_stamp_.usec ()));
-
+
When the ACE_Time_Value is passed in the resulting values from
"htonl", it calls "normalize" which totally messes with the
values passed. Thanks to Patrick J. McNerthney