Boost logo

Boost-Commit :

From: anthony_at_[hidden]
Date: 2008-07-07 03:28:33


Author: anthonyw
Date: 2008-07-07 03:28:32 EDT (Mon, 07 Jul 2008)
New Revision: 47171
URL: http://svn.boost.org/trac/boost/changeset/47171

Log:
Added notify functions to class synopsis
Text files modified:
   trunk/libs/thread/doc/condition_variables.qbk | 6 ++++++
   1 files changed, 6 insertions(+), 0 deletions(-)

Modified: trunk/libs/thread/doc/condition_variables.qbk
==============================================================================
--- trunk/libs/thread/doc/condition_variables.qbk (original)
+++ trunk/libs/thread/doc/condition_variables.qbk 2008-07-07 03:28:32 EDT (Mon, 07 Jul 2008)
@@ -82,6 +82,9 @@
             condition_variable();
             ~condition_variable();
 
+ void notify_one();
+ void notify_all();
+
             void wait(boost::unique_lock<boost::mutex>& lock);
 
             template<typename predicate_type>
@@ -299,6 +302,9 @@
             condition_variable_any();
             ~condition_variable_any();
 
+ void notify_one();
+ void notify_all();
+
             template<typename lock_type>
             void wait(lock_type& lock);
 


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