From f197ecf1cd2483c16d4b6da0f623227d06f242ea Mon Sep 17 00:00:00 2001 From: gdisirio Date: Sat, 30 Jun 2012 08:56:02 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4362 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/src/chsem.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3