mutex.acquire();
if (!queue.try_pop(task)) {
- xbt_ex_t e;
XBT_DEBUG("waiting for a message to come");
- TRY {
- if (timeout > 0)
- cond.timedwait(mutex, timeout);
- else
- cond.wait(mutex);
- }
- CATCH (e) {
- if (e.category != timeout_error)
- RETHROW;
- xbt_ex_free(e);
- return false; // got a timeout
+ if (timeout > 0) {
+ if (!cond.timedwait(mutex, timeout))
+ return false;
+ } else {
+ cond.wait(mutex);
}
bool pop_was_successful = queue.try_pop(task);
xbt_assert(pop_was_successful);
void broadcast() { xbt_cond_broadcast(cond); }
void signal() { xbt_cond_signal(cond); }
void wait(mutex_t& mutex) { xbt_cond_wait(cond, mutex.mutex); }
- void timedwait(mutex_t& mutex, double delay) {
- xbt_cond_timedwait(cond, mutex.mutex, delay);
+ bool timedwait(mutex_t& mutex, double delay) {
+ xbt_ex_t e;
+ TRY {
+ xbt_cond_timedwait(cond, mutex.mutex, delay);
+ }
+ CATCH (e) {
+ if (e.category != timeout_error)
+ RETHROW;
+ xbt_ex_free(e);
+ return false; // got a timeout
+ }
+ return true;
}
private: