Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r84629 - branches/release/libs/thread/doc
From: vicente.botet_at_[hidden]
Date: 2013-06-04 02:08:50


Author: viboes
Date: 2013-06-04 02:08:49 EDT (Tue, 04 Jun 2013)
New Revision: 84629
URL: http://svn.boost.org/trac/boost/changeset/84629

Log:
Thread: Merge history and fix #8645.
Text files modified:
   branches/release/libs/thread/doc/changes.qbk | 3 +++
   branches/release/libs/thread/doc/mutex_concepts.qbk | 4 ++--
   2 files changed, 5 insertions(+), 2 deletions(-)

Modified: branches/release/libs/thread/doc/changes.qbk
==============================================================================
--- branches/release/libs/thread/doc/changes.qbk (original)
+++ branches/release/libs/thread/doc/changes.qbk 2013-06-04 02:08:49 EDT (Tue, 04 Jun 2013)
@@ -53,7 +53,10 @@
 * [@http://svn.boost.org/trac/boost/ticket/8443 #8443] Header file inclusion order may cause crashes
 * [@http://svn.boost.org/trac/boost/ticket/8451 #8451] Missing documented function 'boost::scoped_thread::joinable'
 * [@http://svn.boost.org/trac/boost/ticket/8530 #8530] [Coverity] Unused variable thread_handle, uninitialized variable cond_mutex in thread/pthread/thread_data.hpp
+* [@http://svn.boost.org/trac/boost/ticket/8576 #8576] "sur parolle" should be "sur parole".
 * [@http://svn.boost.org/trac/boost/ticket/8596 #8596] With C++0x enabled, boost::packaged_task stores a reference to function objects, instead of a copy.
+* [@http://svn.boost.org/trac/boost/ticket/8626 #8626] Reintroduce BOOST_VERIFY on pthread_mutex_destroy return type
+* [@http://svn.boost.org/trac/boost/ticket/8645 #8645] Typo in Strict lock definition
 
 [heading Version 4.0.0 - boost 1.53]
 

Modified: branches/release/libs/thread/doc/mutex_concepts.qbk
==============================================================================
--- branches/release/libs/thread/doc/mutex_concepts.qbk (original)
+++ branches/release/libs/thread/doc/mutex_concepts.qbk 2013-06-04 02:08:49 EDT (Tue, 04 Jun 2013)
@@ -1135,7 +1135,7 @@
   }
 
   
-A StrictLock is a lock that ensures that the associated mutex is locked during the lifetime if the lock.
+A StrictLock is a lock that ensures that the associated mutex is locked during the lifetime of the lock.
 
 A type `L` meets the StrictLock requirements if the following expressions are well-formed and have the specified semantics
 
@@ -1158,7 +1158,7 @@
 
 [section:is_strict_lock_sur_parole `is_strict_lock_sur_parole<L>`]
 
-As the semantic "ensures that the associated mutex is locked during the lifetime if the lock. " can not be described by syntactic requirements a `is_strict_lock_sur_parole` trait must be specialized by the user defining the lock so that the following assertion is true:
+As the semantic "ensures that the associated mutex is locked during the lifetime of the lock. " can not be described by syntactic requirements a `is_strict_lock_sur_parole` trait must be specialized by the user defining the lock so that the following assertion is true:
 
   is_strict_lock_sur_parole<L>::value == true
 


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