aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-06-30 08:56:02 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-06-30 08:56:02 +0000
commitf197ecf1cd2483c16d4b6da0f623227d06f242ea (patch)
tree39cc3d441777beaa6dd78e45bff621ff2329e36e /os
parentead754141bfec4604d4268554eb44b291006ee67 (diff)
downloadChibiOS-f197ecf1cd2483c16d4b6da0f623227d06f242ea.tar.gz
ChibiOS-f197ecf1cd2483c16d4b6da0f623227d06f242ea.tar.bz2
ChibiOS-f197ecf1cd2483c16d4b6da0f623227d06f242ea.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4362 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r--os/kernel/src/chsem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/kernel/src/chsem.c b/os/kernel/src/chsem.c
index be1d363a5..10aee42d3 100644
--- a/os/kernel/src/chsem.c
+++ b/os/kernel/src/chsem.c
@@ -303,7 +303,7 @@ void chSemSignalI(Semaphore *sp) {
"inconsistent semaphore");
if (++sp->s_cnt <= 0) {
- /* note, it is done this way in order to allow a tail call on
+ /* Note, it is done this way in order to allow a tail call on
chSchReadyI().*/
Thread *tp = fifo_remove(&sp->s_queue);
tp->p_u.rdymsg = RDY_OK;