感谢您回复Sam Miller,但我需要在Windows上实现它。
看看这个例子o写道:
boost::mutex mut;
boost::condition_variable cond;
boost::asio::io_service io_service;
boost::asio::deadline_timer t(io_service);
void test_func()
{
boost::mutex::scoped_lock lk(mut);
cond.notify_all();
}
void cancel_test_func()
{
boost::unique_lock< boost::mutex > lk(mut);
auto canceled_timers = t.cancel();
cond.wait(lk);
printf("Canceled...%u.", canceled_timers);
}
int main(int argc, char* argv[])
{
try
{
t.expires_from_now(boost::posix_time::seconds(5));
t.async_wait(boost::bind(&test_func));
io_service.post(boost::bind(cancel_test_func));
boost::thread_group tg;
tg.create_thread( boost::bind(&boost::asio::io_service::run, &io_service) );
//tg.create_thread( boost::bind(&boost::asio::io_service::run, &io_service) );
getchar();
}
catch (std::exception& e)
{
std::cerr << "Exception: " << e.what() << "\n";
}
return 0;
}
要使此示例有效(取消定时器),我需要取消注释第二个线程创建。只有一个线程,我从未收到通知。 问题是:这种行为是否正常?
答案 0 :(得分:0)
条件变量是一个同步概念,它与io_service
之类的事件循环不能很好地集成。如果您想在Linux上使用异步事件,请查看eventfd(2)
带有EFD_SEMAPHORE
标志的信号量语义。我不确定其他平台上是否有类似的界面