diff options
author | Bernard Normier <bernard@zeroc.com> | 2003-04-16 04:28:51 +0000 |
---|---|---|
committer | Bernard Normier <bernard@zeroc.com> | 2003-04-16 04:28:51 +0000 |
commit | a2b71ffe6ecf744edbbef4d6c77d31f9b734ac6c (patch) | |
tree | 736623a7783cd89923cb964c66f03cd712880520 /cpp | |
parent | Mutex and Lock changes: lock/unlock now return void, trylock returns a bool (diff) | |
download | ice-a2b71ffe6ecf744edbbef4d6c77d31f9b734ac6c.tar.bz2 ice-a2b71ffe6ecf744edbbef4d6c77d31f9b734ac6c.tar.xz ice-a2b71ffe6ecf744edbbef4d6c77d31f9b734ac6c.zip |
Description of Mutex/Lock changes
Diffstat (limited to 'cpp')
-rw-r--r-- | cpp/CHANGES | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpp/CHANGES b/cpp/CHANGES index d13f5e2e033..976356f3ce2 100644 --- a/cpp/CHANGES +++ b/cpp/CHANGES @@ -1,6 +1,12 @@ Changes since version 1.0.1 --------------------------- +- Updated Mutex, RecMutex and RWRecMutex APIs: lock and unlock now return + void, and trylock returns a bool that indicates whether the mutex was + acquired or not. Also added new member functions to LockT, TryLockT, + RLockT, TryLockT, WLockT, TryWLockT: acquire(), tryAcquire(), release(), + acquired() and more. + - Removed dependency on E2FSPROGS for UUID generation. On Unix, UUIDs are now generated directly with /dev/urandom. |