id,summary,reporter,owner,description,type,status,milestone,component,version,severity,resolution,keywords,cc 4745,"On Windows, timers that expire more than 5 minutes in the future may never complete",chris_kohlhoff,chris_kohlhoff,"The following program should print ""done"" after 5.5 minutes, but instead runs indefinitely. {{{ #include #include #include #include void handler() { std::cout << ""done"" << std::endl; } int main() { boost::asio::io_service io_service; boost::asio::deadline_timer timer(io_service); timer.expires_from_now(boost::posix_time::seconds(330)); timer.async_wait(boost::bind(handler)); io_service.run(); } }}}",Bugs,closed,To Be Determined,asio,Boost 1.44.0,Problem,fixed,,