diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-02-23 18:59:39 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-02-23 18:59:39 +0000 |
commit | 6f6e1a6401eda000dce198150937c7919b4c9855 (patch) | |
tree | b85e95a84dc9618c4abdf9150fdb9ea6070afe4f /os/kernel/src/chmtx.c | |
parent | b3b1028036a2f18327fb97f2126192a2ace62bb2 (diff) | |
download | ChibiOS-6f6e1a6401eda000dce198150937c7919b4c9855.tar.gz ChibiOS-6f6e1a6401eda000dce198150937c7919b4c9855.tar.bz2 ChibiOS-6f6e1a6401eda000dce198150937c7919b4c9855.zip |
Improved messages subsystem.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2759 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/src/chmtx.c')
-rw-r--r-- | os/kernel/src/chmtx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/os/kernel/src/chmtx.c b/os/kernel/src/chmtx.c index b84c4d57e..826ef27fe 100644 --- a/os/kernel/src/chmtx.c +++ b/os/kernel/src/chmtx.c @@ -141,7 +141,7 @@ void chMtxLockS(Mutex *mp) { case THD_STATE_WTSEM:
#endif
#if CH_USE_MESSAGES_PRIORITY
- case THD_STATE_SNDMSG:
+ case THD_STATE_SNDMSGQ:
#endif
/* Re-enqueues tp with its new priority on the queue.*/
prio_insert(dequeue(tp), (ThreadsQueue *)tp->p_u.wtobjp);
|