summaryrefslogtreecommitdiff
path: root/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'cpp')
-rw-r--r--cpp/CHANGES6
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.