|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r51447 - sandbox/threadpool/boost/tp
From: oliver.kowalke_at_[hidden]
Date: 2009-02-25 15:54:44
Author: olli
Date: 2009-02-25 15:54:43 EST (Wed, 25 Feb 2009)
New Revision: 51447
URL: http://svn.boost.org/trac/boost/changeset/51447
Log:
* rename pool::wiat_callback_() to pool::re_schedule_until_()
Text files modified:
sandbox/threadpool/boost/tp/pool.hpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: sandbox/threadpool/boost/tp/pool.hpp
==============================================================================
--- sandbox/threadpool/boost/tp/pool.hpp (original)
+++ sandbox/threadpool/boost/tp/pool.hpp 2009-02-25 15:54:43 EST (Wed, 25 Feb 2009)
@@ -348,7 +348,7 @@
}
template< typename R >
- void wait_callback_( jss::shared_future< R > const& f)
+ void re_schedule_until_( jss::shared_future< R > const& f)
{
worker * w( tss_worker_.get() );
BOOST_ASSERT( w);
@@ -684,7 +684,7 @@
{
tsk.set_wait_callback(
bind(
- ( void ( pool< Channel >::*)( jss::shared_future< R > const&) ) & pool< Channel >::wait_callback_,
+ ( void ( pool< Channel >::*)( jss::shared_future< R > const&) ) & pool< Channel >::re_schedule_until_,
this,
fut) );
w->put( detail::callable( move( tsk) ), intr);
@@ -721,7 +721,7 @@
{
tsk.set_wait_callback(
bind(
- ( void ( pool< Channel >::*)( jss::shared_future< R > const&) ) & pool< Channel >::wait_callback_,
+ ( void ( pool< Channel >::*)( jss::shared_future< R > const&) ) & pool< Channel >::re_schedule_until_,
this,
fut) );
w->put( detail::callable( move( tsk) ), intr);
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