summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Huston <shuston@riverace.com>2006-09-08 18:33:00 +0000
committerSteve Huston <shuston@riverace.com>2006-09-08 18:33:00 +0000
commitaeb359b38a280110ee973fbf18d9cf46e8de2e6b (patch)
tree322b5f5e109ac6334123bc3fb1e43e80fd033b70
parent7927a9d78ff601737b0dc6699bf0d9a316c034e8 (diff)
downloadATCD-aeb359b38a280110ee973fbf18d9cf46e8de2e6b.tar.gz
ChangeLogTag:Fri Sep 8 18:25:17 UTC 2006 Steve Huston <shuston@riverace.com>
-rw-r--r--ACE/ChangeLog15
-rw-r--r--ACE/NEWS4
2 files changed, 19 insertions, 0 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 4266ebc95e0..f03ea8a11ed 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,3 +1,18 @@
+Fri Sep 8 18:25:17 UTC 2006 Steve Huston <shuston@riverace.com>
+
+ * ace/Synch_Options.{h cpp}: Improved the documentation for this
+ class, particularly the table that explains the behavior for the
+ valid combinations of reactor-usage and timeout. Thank you to
+ Andriy Gapon <avg at icyb dot net dot ua> for motivating this.
+
+ Also changed the return type of operator[] from int to bool; its
+ meaning was always 1/0 but was overlooked in the sweep for this
+ type of thing last year.
+
+ * NEWS: Added the ACE_Synch_Options::operator[] return type change.
+
+ * THANKS: Added Andriy Gapon to the Hall of Fame.
+
Wed Sep 6 07:40:03 UTC 2006 Boris Kolpackov <boris@codesynthesis.com>
* ace/Bound_Ptr.h:
diff --git a/ACE/NEWS b/ACE/NEWS
index d35603f5b75..97352fe7f7b 100644
--- a/ACE/NEWS
+++ b/ACE/NEWS
@@ -4,6 +4,10 @@ PLANNED MAJOR CHANGES "SOMETIME IN THE FUTURE" (i.e., exact beta not known)
USER VISIBLE CHANGES BETWEEN ACE-5.5.2 and ACE-5.5.3
====================================================
+. Changed the ACE_Synch_Options::operator[] method to return bool rather than
+ int. The value returned is a yes/no indication of whether or not the
+ specified option(s) are set in the object.
+
. Changed the prototype(s) for ACE::debug () to return (and take) a
bool. This is consistent with the original intent for this
feature. If you have been using it like 'ACE::debug () > 0' or