diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-08 13:41:04 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-08 13:41:04 +0000 |
commit | ba030d32c3e65ec5d4c6c6eaf7f55d7c61aae0b8 (patch) | |
tree | 8a1636ebb9308dbf17db0f30d8ecf5dc03587cb6 /src/chmtx.c | |
parent | 79194eae8e198e6a480dcb5d6e5c57b28af07f0b (diff) | |
download | ChibiOS-ba030d32c3e65ec5d4c6c6eaf7f55d7c61aae0b8.tar.gz ChibiOS-ba030d32c3e65ec5d4c6c6eaf7f55d7c61aae0b8.tar.bz2 ChibiOS-ba030d32c3e65ec5d4c6c6eaf7f55d7c61aae0b8.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@170 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chmtx.c')
-rw-r--r-- | src/chmtx.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/src/chmtx.c b/src/chmtx.c index 25f3ce664..3a1e2e00f 100644 --- a/src/chmtx.c +++ b/src/chmtx.c @@ -65,11 +65,19 @@ void chMtxLockS(Mutex *mp) { Thread *tp = mp->m_owner;
while (tp->p_prio < currp->p_prio) {
tp->p_prio = currp->p_prio;
+ /*
+ * The following states need priority queues reordering.
+ */
switch (tp->p_state) {
case PRWTMTX:
- prio_insert(dequeue(tp), &tp->p_mtxp->m_queue);
- tp = tp->p_mtxp->m_owner;
+ prio_insert(dequeue(tp), &tp->p_wtmtxp->m_queue);
+ tp = tp->p_wtmtxp->m_owner;
continue;
+#ifdef CH_USE_MESSAGES_PRIORITY
+ case PRSNDMSG:
+ if (tp->p_flags & P_MSGBYPRIO)
+ prio_insert(dequeue(tp), &tp->p_wtthdp->p_msgqueue);
+#endif
case PRREADY:
chSchReadyI(dequeue(tp), RDY_OK);
}
@@ -79,7 +87,7 @@ void chMtxLockS(Mutex *mp) { * Goes to sleep on the mutex.
*/
prio_insert(currp, &mp->m_queue);
- currp->p_mtxp = mp;
+ currp->p_wtmtxp = mp;
chSchGoSleepS(PRWTMTX);
chDbgAssert(mp->m_owner == NULL, "chmtx.c, chMtxLockS()");
}
|