Boost timed_wait leap seconds problem
- by Isac
Hi, I am using the timed_wait from boost C++ library and I am getting a problem with leap seconds.
Here is a quick example from boosts documentation:
boost::system_time const timeout=boost::get_system_time() + boost::posix_time::milliseconds(500);
extern bool done;
extern boost::mutex m;
extern boost::condition_variable cond;
…