diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-06-30 08:56:02 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-06-30 08:56:02 +0000 |
commit | f197ecf1cd2483c16d4b6da0f623227d06f242ea (patch) | |
tree | 39cc3d441777beaa6dd78e45bff621ff2329e36e /os | |
parent | ead754141bfec4604d4268554eb44b291006ee67 (diff) | |
download | ChibiOS-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.c | 2 |
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;
|