aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2019-06-30 11:01:02 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2019-06-30 11:01:02 +0000
commit52da4b196e3b72bf18a1f9f443ec29f9f36eab97 (patch)
tree0ea92506e4e73dbb4f7e7d68f8a448be5566a72f
parent9ad1c43e87dea94438382486e1c6fd8285e12148 (diff)
downloadChibiOS-52da4b196e3b72bf18a1f9f443ec29f9f36eab97.tar.gz
ChibiOS-52da4b196e3b72bf18a1f9f443ec29f9f36eab97.tar.bz2
ChibiOS-52da4b196e3b72bf18a1f9f443ec29f9f36eab97.zip
typo
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_19.1.x@12860 27425a3e-05d8-49a3-a47f-9c15f0e5edd8
-rw-r--r--os/rt/src/chmtx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/rt/src/chmtx.c b/os/rt/src/chmtx.c
index 899e04d1b..8b11250e0 100644
--- a/os/rt/src/chmtx.c
+++ b/os/rt/src/chmtx.c
@@ -376,7 +376,7 @@ void chMtxUnlock(mutex_t *mp) {
mp->next = tp->mtxlist;
tp->mtxlist = mp;
- /* Note, not using chSchWakeupS() becuase that function expects the
+ /* Note, not using chSchWakeupS() because that function expects the
current thread to have the higher or equal priority than the ones
in the ready list. This is not necessarily true here because we
just changed priority.*/