|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r84688 - trunk/libs/thread/doc
From: vicente.botet_at_[hidden]
Date: 2013-06-08 10:50:26
Author: viboes
Date: 2013-06-08 10:50:26 EDT (Sat, 08 Jun 2013)
New Revision: 84688
URL: http://svn.boost.org/trac/boost/changeset/84688
Log:
Thread: update future doc with void set_exception_at_thread_exit(E p).
Text files modified:
trunk/libs/thread/doc/future_ref.qbk | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
Modified: trunk/libs/thread/doc/future_ref.qbk
==============================================================================
--- trunk/libs/thread/doc/future_ref.qbk Sat Jun 8 10:07:21 2013 (r84687)
+++ trunk/libs/thread/doc/future_ref.qbk 2013-06-08 10:50:26 EDT (Sat, 08 Jun 2013) (r84688)
@@ -1200,10 +1200,14 @@
// Set the value
void set_value(see below);
void set_exception(boost::exception_ptr e);
+ template <typename E>
+ void set_exception(E e); // EXTENSION
// setting the result with deferred notification
void set_value_at_thread_exit(see below);
void set_exception_at_thread_exit(exception_ptr p);
+ template <typename E>
+ void set_exception_at_thread_exit(E p); // EXTENSION
template<typename F>
void set_wait_callback(F f); // EXTENSION
@@ -1343,6 +1347,8 @@
[section:set_exception Member Function `set_exception()`]
void set_exception(boost::exception_ptr e);
+ template <typename E>
+ void set_exception(E e); // EXTENSION
[variablelist
@@ -1400,6 +1406,8 @@
[section:set_exception_at_thread_exit Member Function `set_exception_at_thread_exit()`]
void set_exception_at_thread_exit(boost::exception_ptr e);
+ template <typename E>
+ void set_exception_at_thread_exit(E p); // EXTENSION
[variablelist
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