Moved "falls through" comments outside #if block.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11158 35acf78f-673a-0410-8e92-d51de3d6d3f4
This commit is contained in:
parent
2bd9de7041
commit
4e51e4aadb
|
@ -332,12 +332,12 @@ static void wakeup(void *p) {
|
|||
#if CH_CFG_USE_SEMAPHORES == TRUE
|
||||
case CH_STATE_WTSEM:
|
||||
chSemFastSignalI(tp->u.wtsemp);
|
||||
/* Falls through.*/
|
||||
#endif
|
||||
/* Falls through.*/
|
||||
#if (CH_CFG_USE_CONDVARS == TRUE) && (CH_CFG_USE_CONDVARS_TIMEOUT == TRUE)
|
||||
case CH_STATE_WTCOND:
|
||||
/* Falls through.*/
|
||||
#endif
|
||||
/* Falls through.*/
|
||||
case CH_STATE_QUEUED:
|
||||
/* States requiring dequeuing.*/
|
||||
(void) queue_dequeue(tp);
|
||||
|
|
Loading…
Reference in New Issue