diff options
Diffstat (limited to 'os/kernel')
-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;
|