$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r66004 - trunk/boost/asio/detail/impl
From: chris_at_[hidden]
Date: 2010-10-16 01:43:14
Author: chris_kohlhoff
Date: 2010-10-16 01:43:03 EDT (Sat, 16 Oct 2010)
New Revision: 66004
URL: http://svn.boost.org/trac/boost/changeset/66004
Log:
Fix the way the kqueue_reactor is interrupted when a new timer is scheduled. Refs #4568.
Text files modified:
trunk/boost/asio/detail/impl/kqueue_reactor.hpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
Modified: trunk/boost/asio/detail/impl/kqueue_reactor.hpp
==============================================================================
--- trunk/boost/asio/detail/impl/kqueue_reactor.hpp (original)
+++ trunk/boost/asio/detail/impl/kqueue_reactor.hpp 2010-10-16 01:43:03 EDT (Sat, 16 Oct 2010)
@@ -55,7 +55,7 @@
bool earliest = queue.enqueue_timer(time, timer, op);
io_service_.work_started();
if (earliest)
- interrupter_.interrupt();
+ interrupt();
}
template <typename Time_Traits>