Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FreeRTOS/FreeRTOS-Kernel.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoralfred gedeon <alfred2g@hotmail.com>2020-08-18 00:50:56 +0300
committerGitHub <noreply@github.com>2020-08-18 00:50:56 +0300
commit8c77117c32e49a5070cd85e8920c36723997e465 (patch)
treed892194359da32e30cf393c77c3700cb1112ec4e /croutine.c
parent86653e2a1f826e1644887bff8de6e469ddf48d62 (diff)
Style: Remove tabs and tab == 4 spaces (#120)
* Style: Remove tabls and tab == 4 spaces * Style: remove xx accidentally left * Style: revert uncrustify for untested portable directories * Style: revert more uncrustify files * Style: Revert more uncrustified files * Style: Revert some uncrutified files * Style: change more files * Style: remove t tab == 4 spaces * Style: remove tabs = spaces * Style: revert changed files * Style: redo the stuyles * Style: add uncrustify disable parsing for asm Co-authored-by: Alfred Gedeon <gedeonag@amazon.com>
Diffstat (limited to 'croutine.c')
-rw-r--r--croutine.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/croutine.c b/croutine.c
index 61520677a..6b1b08f41 100644
--- a/croutine.c
+++ b/croutine.c
@@ -22,7 +22,6 @@
* http://www.FreeRTOS.org
* http://aws.amazon.com/freertos
*
- * 1 tab == 4 spaces!
*/
#include "FreeRTOS.h"
@@ -202,7 +201,7 @@
{
/* Are there any co-routines waiting to get moved to the ready list? These
* are co-routines that have been readied by an ISR. The ISR cannot access
- * the ready lists itself. */
+ * the ready lists itself. */
while( listLIST_IS_EMPTY( &xPendingReadyCoRoutineList ) == pdFALSE )
{
CRCB_t * pxUnblockedCRCB;
@@ -306,7 +305,7 @@
}
/* listGET_OWNER_OF_NEXT_ENTRY walks through the list, so the co-routines
- * of the same priority get an equal share of the processor time. */
+ * of the same priority get an equal share of the processor time. */
listGET_OWNER_OF_NEXT_ENTRY( pxCurrentCoRoutine, &( pxReadyCoRoutineLists[ uxTopCoRoutineReadyPriority ] ) );
/* Call the co-routine. */