summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-25 02:49:28 +0000
committerlevine <levine@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1999-08-25 02:49:28 +0000
commit99f9889d1a0dab0ccf681f58ac7860a38afe8425 (patch)
treeeea5d74107bc9b2bf1cff3afcb1f8305e7563bd6
parent4413e7772e85c6be94484946ccde204322b961d3 (diff)
downloadATCD-99f9889d1a0dab0ccf681f58ac7860a38afe8425.tar.gz
ChangeLogTag: Tue Aug 24 21:47:44 1999 David L. Levine <levine@cs.wustl.edu>
-rw-r--r--ChangeLog-99b48
-rw-r--r--ace/Synch_Options.cpp2
-rw-r--r--ace/Synch_Options.h2
3 files changed, 29 insertions, 23 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index 529d1bc0998..e96d253b932 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,33 +1,39 @@
-Tue Aug 24 10:02:51 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+Tue Aug 24 21:47:44 1999 David L. Levine <levine@cs.wustl.edu>
+
+ * ace/Synch_Options.{h,cpp} (timeout): added const to
+ ACE_Time_Value & argument, because it's not modified.
+ Thanks to John Lindal <jafl@cco.caltech.edu> for suggesting this.
- * tests/Process_Manager_Test.cpp: Fixed a number of warnings
- caused by unused args and signed/unsigned mismatches. Thanks to
- David Levine for reporting this.
+Tue Aug 24 10:02:51 1999 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
- * ace/Service_Repository.h,
- ace/Service_Config.h,
- ace/OS.h:
- Changed the default number of entries in the
- ACE_Service_Repository from ACE_DEFAULT_SELECT_REACTOR_SIZE
- to ACE_DEFAULT_SERVICE_REPOSITORY_SIZE, which defaults to
- 1024. Thanks to Ivan Murthy <Ivan.Murphy@med.siemens.de> for
- suggesting this.
+ * tests/Process_Manager_Test.cpp: Fixed a number of warnings
+ caused by unused args and signed/unsigned mismatches. Thanks to
+ David Levine for reporting this.
+
+ * ace/Service_Repository.h,
+ ace/Service_Config.h,
+ ace/OS.h:
+ Changed the default number of entries in the
+ ACE_Service_Repository from ACE_DEFAULT_SELECT_REACTOR_SIZE
+ to ACE_DEFAULT_SERVICE_REPOSITORY_SIZE, which defaults to
+ 1024. Thanks to Ivan Murthy <Ivan.Murphy@med.siemens.de> for
+ suggesting this.
Tue Aug 24 16:23:07 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
- * bin/make_release:
- Use an explicit temporary file to create the ChangeLog, i had
- some problems with the previous scheme, but it could be my
- shell.
- When tagging TAO we have to change directories.
+ * bin/make_release:
+ Use an explicit temporary file to create the ChangeLog, i had
+ some problems with the previous scheme, but it could be my
+ shell.
+ When tagging TAO we have to change directories.
Tue Aug 24 12:19:29 1999 Carlos O'Ryan <coryan@cs.wustl.edu>
- * tests/Makefile:
- Updated dependencies
+ * tests/Makefile:
+ Updated dependencies
- * performance-tests/TCP/tcp_test.cpp:
- Fixed argument parsing.
+ * performance-tests/TCP/tcp_test.cpp:
+ Fixed argument parsing.
Tue Aug 24 10:37:02 1999 David L. Levine <levine@cs.wustl.edu>
diff --git a/ace/Synch_Options.cpp b/ace/Synch_Options.cpp
index e3ed2627f1d..0b54fc96d6b 100644
--- a/ace/Synch_Options.cpp
+++ b/ace/Synch_Options.cpp
@@ -78,7 +78,7 @@ ACE_Synch_Options::timeout (void) const
}
void
-ACE_Synch_Options::timeout (ACE_Time_Value &tv)
+ACE_Synch_Options::timeout (const ACE_Time_Value &tv)
{
ACE_TRACE ("ACE_Synch_Options::timeout");
this->timeout_ = tv;
diff --git a/ace/Synch_Options.h b/ace/Synch_Options.h
index 2b40bf5d9e3..94fb15a9c74 100644
--- a/ace/Synch_Options.h
+++ b/ace/Synch_Options.h
@@ -100,7 +100,7 @@ public:
// Returns a reference to the <Time_Value>. This value only makes
// sense if (*this)[USE_TIMEOUT] is true.
- void timeout (ACE_Time_Value &tv);
+ void timeout (const ACE_Time_Value &tv);
// Set the <Time_Value>.
const ACE_Time_Value *time_value (void) const;