summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2001-07-30 14:46:40 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2001-07-30 14:46:40 +0000
commit74cdc9d3d28842bd88ad070cbd2fefe6c4a4d261 (patch)
tree84c2bac66bf9527ef374219cc9967e41b8630a9c
parent2bbf353bf4b1a12ad923d185136161531144c918 (diff)
downloadATCD-74cdc9d3d28842bd88ad070cbd2fefe6c4a4d261.tar.gz
ChangeLogTag:Mon Jul 30 09:43:06 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
-rw-r--r--ChangeLog5
-rw-r--r--ChangeLogs/ChangeLog-02a5
-rw-r--r--ChangeLogs/ChangeLog-03a5
-rw-r--r--ace/OS.i3
4 files changed, 16 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 84f213d71ce..6bd221afcf7 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Mon Jul 30 09:43:06 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
+
+ * ace/OS.i (mutex_lock): Missing an argument to the ACE_OSCALL macro.
+ Thanks to Bala for reporting this.
+
Mon Jul 30 05:43:23 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* ace/Synch.h (ACE_Semaphore): Corrected the comment on
diff --git a/ChangeLogs/ChangeLog-02a b/ChangeLogs/ChangeLog-02a
index 84f213d71ce..6bd221afcf7 100644
--- a/ChangeLogs/ChangeLog-02a
+++ b/ChangeLogs/ChangeLog-02a
@@ -1,3 +1,8 @@
+Mon Jul 30 09:43:06 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
+
+ * ace/OS.i (mutex_lock): Missing an argument to the ACE_OSCALL macro.
+ Thanks to Bala for reporting this.
+
Mon Jul 30 05:43:23 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* ace/Synch.h (ACE_Semaphore): Corrected the comment on
diff --git a/ChangeLogs/ChangeLog-03a b/ChangeLogs/ChangeLog-03a
index 84f213d71ce..6bd221afcf7 100644
--- a/ChangeLogs/ChangeLog-03a
+++ b/ChangeLogs/ChangeLog-03a
@@ -1,3 +1,8 @@
+Mon Jul 30 09:43:06 2001 Douglas C. Schmidt <schmidt@macarena.cs.wustl.edu>
+
+ * ace/OS.i (mutex_lock): Missing an argument to the ACE_OSCALL macro.
+ Thanks to Bala for reporting this.
+
Mon Jul 30 05:43:23 2001 Douglas C. Schmidt <schmidt@tango.doc.wustl.edu>
* ace/Synch.h (ACE_Semaphore): Corrected the comment on
diff --git a/ace/OS.i b/ace/OS.i
index 7135ad8ba7e..2c31cbe1d35 100644
--- a/ace/OS.i
+++ b/ace/OS.i
@@ -2043,8 +2043,7 @@ ACE_OS::mutex_lock (ACE_mutex_t *m,
// Note that the mutex should not be a recursive one, i.e., it
// should only be a standard mutex or an error checking mutex.
- ACE_OSCALL (ACE_ADAPT_RETVAL (::pthread_mutex_timedlock (m, &ts),
- result), int, -1);
+ ACE_OSCALL (ACE_ADAPT_RETVAL (::pthread_mutex_timedlock (m, &ts), result), int, -1, result);
// We need to adjust this to make the errno values consistent.
if (result == -1 && errno == ETIMEDOUT)