diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-23 12:46:15 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2017-11-23 12:46:15 +0000 |
commit | 85a36d3767152dd571f5ca8e8001ce66f3803f13 (patch) | |
tree | 78042f8caeffefcc120f07edc9c69d13907f5559 /os/rt | |
parent | 71b7be3d452756b85d4d05876a1e1c16ee62558c (diff) | |
download | ChibiOS-85a36d3767152dd571f5ca8e8001ce66f3803f13.tar.gz ChibiOS-85a36d3767152dd571f5ca8e8001ce66f3803f13.tar.bz2 ChibiOS-85a36d3767152dd571f5ca8e8001ce66f3803f13.zip |
Fixed bug #906.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11067 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/rt')
-rw-r--r-- | os/rt/src/chschd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/src/chschd.c b/os/rt/src/chschd.c index d4bf1cafa..476b19836 100644 --- a/os/rt/src/chschd.c +++ b/os/rt/src/chschd.c @@ -332,11 +332,11 @@ static void wakeup(void *p) { #if CH_CFG_USE_SEMAPHORES == TRUE
case CH_STATE_WTSEM:
chSemFastSignalI(tp->u.wtsemp);
- /* Falls into, intentional. */
+ /* Falls through.*/
#endif
#if (CH_CFG_USE_CONDVARS == TRUE) && (CH_CFG_USE_CONDVARS_TIMEOUT == TRUE)
case CH_STATE_WTCOND:
- /* Falls into, intentional. */
+ /* Falls through.*/
#endif
case CH_STATE_QUEUED:
/* States requiring dequeuing.*/
|