Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r82107 - trunk/libs/thread/doc
From: vicente.botet_at_[hidden]
Date: 2012-12-19 17:58:36


Author: viboes
Date: 2012-12-19 17:58:36 EST (Wed, 19 Dec 2012)
New Revision: 82107
URL: http://svn.boost.org/trac/boost/changeset/82107

Log:
Thread: update doc ref #7812
Text files modified:
   trunk/libs/thread/doc/condition_variables.qbk | 8 ++++----
   1 files changed, 4 insertions(+), 4 deletions(-)

Modified: trunk/libs/thread/doc/condition_variables.qbk
==============================================================================
--- trunk/libs/thread/doc/condition_variables.qbk (original)
+++ trunk/libs/thread/doc/condition_variables.qbk 2012-12-19 17:58:36 EST (Wed, 19 Dec 2012)
@@ -346,8 +346,8 @@
 invoking `lock.lock()` before the call to `wait` returns. The lock is also
 reacquired by invoking `lock.lock()` if the function exits with an exception.]]
 
-[[Returns:] [`cv_status::no_timeout` if the call is returning because the time specified by
-`abs_time` was reached, `cv_status::timeout` otherwise.]]
+[[Returns:] [`cv_status::timeout` if the call is returning because the time specified by
+`abs_time` was reached, `cv_status::no_timeout` otherwise.]]
 
 [[Postcondition:] [`lock` is locked by the current thread.]]
 
@@ -378,8 +378,8 @@
 `wait` returns. The lock is also reacquired by invoking `lock.lock()` if the
 function exits with an exception.]]
 
-[[Returns:] [`cv_status::no_timeout ` if the call is returning because the time period specified
-by `rel_time` has elapsed, `cv_status::timeout ` otherwise.]]
+[[Returns:] [`cv_status::timeout ` if the call is returning because the time period specified
+by `rel_time` has elapsed, `cv_status::no_timeout ` otherwise.]]
 
 [[Postcondition:] [`lock` is locked by the current thread.]]
 


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk