diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/chmtx.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/chmtx.c b/src/chmtx.c index 396825735..b1d32d220 100644 --- a/src/chmtx.c +++ b/src/chmtx.c @@ -93,6 +93,12 @@ void chMtxLockS(Mutex *mp) { /* boost the owner of this mutex if needed */ tp = tp->p_wtmtxp->m_owner; continue; +#if CH_USE_CONDVARS + case PRWTCOND: + /* Requeues tp with its new priority on the condvar queue. */ + prio_insert(dequeue(tp), &tp->p_wtcondp->c_queue); + break; +#endif #if CH_USE_SEMAPHORES_PRIORITY case PRWTSEM: /* Requeues tp with its new priority on the semaphore queue. */ |