From 5e0d17ec99e07e114405a117bdf1579ebff8c5fd Mon Sep 17 00:00:00 2001 From: Josh Hursey Date: Thu, 21 Feb 2008 13:34:27 +0000 Subject: [PATCH] Forgot a case in which we should check is the checkpoint is ready during the threaded CR builds. MTT caught this by running the IU FT CR test 'inflight' which under certian timing scenarios will trigger this. This commit was SVN r17538. --- opal/threads/condition.h | 1 + 1 file changed, 1 insertion(+) diff --git a/opal/threads/condition.h b/opal/threads/condition.h index 68d3fa988b..18f3599ded 100644 --- a/opal/threads/condition.h +++ b/opal/threads/condition.h @@ -84,6 +84,7 @@ static inline int opal_condition_wait(opal_condition_t *c, opal_mutex_t *m) c->c_waiting--; opal_mutex_unlock(m); opal_progress(); + OPAL_CR_TEST_CHECKPOINT_READY_STALL(); opal_mutex_lock(m); return 0; }