bool message_queue::pop(message*& msg, msg_host_t& from, double timeout)
{
- msg_task_t task;
+ msg_task_t task = nullptr;
if (!queue.try_pop(task)) {
if (timeout == 0.0)
return false;
mutex.acquire();
if (!queue.try_pop(task)) {
XBT_DEBUG("waiting for a message to come");
+ bool hit_timeout;
if (timeout > 0) {
- if (!cond.timedwait(mutex, timeout))
- return false;
+ hit_timeout = !cond.timedwait(mutex, timeout);
} else {
cond.wait(mutex);
+ hit_timeout = false;
}
bool pop_was_successful = queue.try_pop(task);
- xbt_assert(pop_was_successful);
+ xbt_assert(hit_timeout || pop_was_successful);
}
mutex.release();
}
+ if (task == nullptr)
+ return false;
+
msg = static_cast<message*>(MSG_task_get_data(task));
from = MSG_task_get_source(task);
MSG_task_destroy(task);