summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2004-04-13 12:48:31 +0000
committerSteve Huston <shuston@riverace.com>2004-04-13 12:48:31 +0000
commit06e192929eba8a2251974baad6c3fc6d37f9c46b (patch)
tree27f9e3dd362de2492371b820838e870764ca7177
parent2042afa84cb925e4c7a684664232e298a80f44d1 (diff)
downloadATCD-06e192929eba8a2251974baad6c3fc6d37f9c46b.tar.gz
ChangeLogTag:Tue Apr 13 08:44:22 2004 Steve Huston <shuston@riverace.com>
-rw-r--r--ChangeLog22
-rw-r--r--ace/Select_Reactor_T.cpp2
2 files changed, 23 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5ecadd0f744..0a8cc5dfe4e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,25 @@
+Tue Apr 13 08:44:22 2004 Steve Huston <shuston@riverace.com>
+
+ * ace/Select_Reactor_T.cpp (check_handles): Fixed typo.
+
+Wed Apr 7 12:27:19 2004 Steve Huston <shuston@riverace.com>
+
+ * ASNMP/asnmp/target.cpp (operator==): Removed the lhs==rhs check at
+ the top. This is a nice-to-have optimization, but MSVC7.1 reports
+ all control paths are recursive.
+
+ * ASNMP/tests/Integer_Test.cpp: Changed 'si' from short to unsigned
+ short. It's initialized with 32768, which doesn't fit in 16 bits,
+ and the comments on its use inside the test itself say it's
+ unsigned short. There are not other comments to explain what this
+ is trying to do, so I may have this wrong... Anyone with more info
+ on this, please feel free to contact me.
+
+ * examples/Log_Msg/Log_Msg_MFC/MFC_Log.h: Formatting adjustment.
+
+ * examples/TMCast/Member/member.cpp: static_cast ACE_UINT64 to
+ unsigned long to avert a VC7.1 compiler warning about truncation.
+
Tue Apr 13 00:47:43 2004 Ossama Othman <ossama@dre.vanderbilt.edu>
* ace/Global_Macros.h (ACE_NEW_MALLOC_RETURN, ACE_NEW_MALLOC):
diff --git a/ace/Select_Reactor_T.cpp b/ace/Select_Reactor_T.cpp
index 50c0eb6b263..c6f81ab8e7d 100644
--- a/ace/Select_Reactor_T.cpp
+++ b/ace/Select_Reactor_T.cpp
@@ -1511,7 +1511,7 @@ ACE_Select_Reactor_T<ACE_SELECT_REACTOR_TOKEN>::check_handles (void)
{
result = 1;
this->remove_handler_i (h, ACE_Event_Handler::ALL_EVENTS_MASK);
- this->state_changed = 1;
+ this->state_changed_ = 1;
}
rd_mask.clr_bit (h);
#else /* !ACE_WIN32 && !MVS && !ACE_PSOS */