summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2002-05-03 11:42:26 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2002-05-03 11:42:26 +0000
commit5cc70e823246721ad580d6e87fe8e4b319a3b0cc (patch)
treef95b071eb6f4857c730682c33576eb3dbc76ed5b
parent1deac21f57d9ddcd90a2306198fe81842a44db45 (diff)
downloadATCD-5cc70e823246721ad580d6e87fe8e4b319a3b0cc.tar.gz
ChangeLogTag: Fri May 3 06:41:10 2002 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ChangeLog14
-rw-r--r--ChangeLogs/ChangeLog-02a14
-rw-r--r--ChangeLogs/ChangeLog-03a14
-rw-r--r--ace/Token.h2
4 files changed, 43 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6699db2ce20..0041ab4f902 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Fri May 3 06:41:10 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * ace/Token.h:
+
+ Remove parameter name to avoid a warning from g++.
+
Thu May 02 15:54:48 2002 Ossama Othman <ossama@uci.edu>
* ace/Select_Reactor_T.cpp (work_pending):
@@ -326,6 +332,14 @@ Tue Apr 30 14:54:02 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* bin/auto_run_tests.lst: Added $TAO_ROOT/tests/Connection_Timeout
to the daily build list.
+Tue Apr 30 14:42:06 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * ace/Synch.h:
+ * ace/Synch.i:
+
+ Change the Null wait condition wait() method to take a const
+ ACE_Time_Value* like the Mutex wait condtion.
+
Mon Apr 29 20:28:49 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
* bin/nightlybuild/builds.lst: Move SunOS_SunCC51, SunOS_GCC_2_95,
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 6699db2ce20..0041ab4f902 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,9 @@
+Fri May 3 06:41:10 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * ace/Token.h:
+
+ Remove parameter name to avoid a warning from g++.
+
Thu May 02 15:54:48 2002 Ossama Othman <ossama@uci.edu>
* ace/Select_Reactor_T.cpp (work_pending):
@@ -326,6 +332,14 @@ Tue Apr 30 14:54:02 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* bin/auto_run_tests.lst: Added $TAO_ROOT/tests/Connection_Timeout
to the daily build list.
+Tue Apr 30 14:42:06 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * ace/Synch.h:
+ * ace/Synch.i:
+
+ Change the Null wait condition wait() method to take a const
+ ACE_Time_Value* like the Mutex wait condtion.
+
Mon Apr 29 20:28:49 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
* bin/nightlybuild/builds.lst: Move SunOS_SunCC51, SunOS_GCC_2_95,
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 6699db2ce20..0041ab4f902 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,9 @@
+Fri May 3 06:41:10 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * ace/Token.h:
+
+ Remove parameter name to avoid a warning from g++.
+
Thu May 02 15:54:48 2002 Ossama Othman <ossama@uci.edu>
* ace/Select_Reactor_T.cpp (work_pending):
@@ -326,6 +332,14 @@ Tue Apr 30 14:54:02 2002 Balachandran Natarajan <bala@cs.wustl.edu>
* bin/auto_run_tests.lst: Added $TAO_ROOT/tests/Connection_Timeout
to the daily build list.
+Tue Apr 30 14:42:06 2002 Chad Elliott <elliott_c@ociweb.com>
+
+ * ace/Synch.h:
+ * ace/Synch.i:
+
+ Change the Null wait condition wait() method to take a const
+ ACE_Time_Value* like the Mutex wait condtion.
+
Mon Apr 29 20:28:49 UTC 2002 Craig Rodrigues <crodrigu@bbn.com>
* bin/nightlybuild/builds.lst: Move SunOS_SunCC51, SunOS_GCC_2_95,
diff --git a/ace/Token.h b/ace/Token.h
index dab95889eb2..975d74080e1 100644
--- a/ace/Token.h
+++ b/ace/Token.h
@@ -308,7 +308,7 @@ class ACE_Export ACE_Token
{
public:
int queueing_strategy (void) { ACE_NOTSUP_RETURN (-1); }
- void queueing_strategy (int queueing_strategy) { }
+ void queueing_strategy (int /*queueing_strategy*/) { }
int acquire (ACE_Time_Value * = 0) { ACE_NOTSUP_RETURN (-1); }
int tryacquire (void) { ACE_NOTSUP_RETURN (-1); }
int remove (void) { ACE_NOTSUP_RETURN (-1); }