BIND 10 trac2198_5, updated. 40de1c10db09295fb9c0014c5ff4413b44fe8aa9 [2198] Remove unnecessary text from API documentation
BIND 10 source code commits
bind10-changes at lists.isc.org
Mon Apr 1 07:21:32 UTC 2013
The branch, trac2198_5 has been updated
via 40de1c10db09295fb9c0014c5ff4413b44fe8aa9 (commit)
from e85c7ea5983687a583f57964694acce71a4a72c9 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 40de1c10db09295fb9c0014c5ff4413b44fe8aa9
Author: Mukund Sivaraman <muks at isc.org>
Date: Mon Apr 1 12:50:31 2013 +0530
[2198] Remove unnecessary text from API documentation
... as the methods are private anyway.
-----------------------------------------------------------------------
Summary of changes:
src/lib/util/threads/sync.h | 9 ---------
1 file changed, 9 deletions(-)
-----------------------------------------------------------------------
diff --git a/src/lib/util/threads/sync.h b/src/lib/util/threads/sync.h
index 4da5ef1..c0bc1a9 100644
--- a/src/lib/util/threads/sync.h
+++ b/src/lib/util/threads/sync.h
@@ -131,9 +131,6 @@ private:
/// \brief Lock the mutex
///
/// This method blocks until the mutex can be locked.
- ///
- /// Please consider not using this method directly and instead using
- /// a Mutex::Locker object instead.
void lock();
/// \brief Try to lock the mutex
@@ -141,16 +138,10 @@ private:
/// This method doesn't block and returns immediately with a status
/// on whether the lock operation was successful.
///
- /// Please consider not using this method directly and instead using
- /// a Mutex::Locker object instead.
- ///
/// \return true if the lock was successful, false otherwise.
bool tryLock();
/// \brief Unlock the mutex
- ///
- /// Please consider not using this method directly and instead using
- /// a Mutex::Locker object instead.
void unlock();
private:
More information about the bind10-changes
mailing list