c++ - Ejemplo de uso de boost:: condition:: timed_wait
En realidad, finalmente encontré un enlace con un ejemplo completo aquí . Con un poco de adaptación, esta parece ser la llamada.
boost::system_time const timeout=boost::get_system_time()+ boost::posix_time::milliseconds(35000);
boost::mutex::scoped_lock lock(the_mutex);
if(the_condition_variable.timed_wait(lock,timeout,&CondFulfilled))
{
<cond fulfilled code>
}
else
{
<timeout code>
}
bool CondFulfilled() { ... }