summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>2000-04-18 23:38:26 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>2000-04-18 23:38:26 +0000
commitb3bdf62e5b986f230a04c30a515790de24a4fa94 (patch)
tree9c28ea0c045a36ad800fd550335b75a22779bf7e /ChangeLog
parent0a44df43be40f0d75d739ec8120e4707644b9ffd (diff)
downloadATCD-b3bdf62e5b986f230a04c30a515790de24a4fa94.tar.gz
ChangeLogTag:Tue Apr 18 15:18:53 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog12
1 files changed, 12 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 6717db20ef5..0de736f1ea0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,17 @@
Tue Apr 18 15:18:53 2000 Douglas C. Schmidt <schmidt@tango.cs.wustl.edu>
+ * ace/OS.h,
+ * ace/OS.i,
+ * ace/Synch.h,
+ * ace/Synch.cpp: Updated the ACE_OS::*mutex_init() methods (and the
+ corresponding ACE_Thread_Mutex, ACE_Mutex, and
+ ACE_Recursive_Thread_Mutex classes) so that they now take an
+ optional ACE_mutexattr_t * rather than just a void *. This is
+ nice because it makes it possible to pass in special attributes,
+ such as the mutex prioceiling attribute, to the underlying
+ pthreads mutex (assuming we're running on pthreads, of course).
+ Thanks to lafortg@res.raytheon.com for motivating this.
+
* ace/Containers_T.cpp (copy_nodes): Added a call to the
allocator->malloc() rather than new. Thanks to Umar Syyid
<usyyid@hns.com> for reporting this.