From: richardbarry Date: Sun, 14 Jul 2013 13:09:18 +0000 (+0000) Subject: Tidy up comments only. X-Git-Tag: V7.5.0~9 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=2e086a8315f32b15df5cf4b4f64ae3019c6945e9;p=freertos Tidy up comments only. git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1981 1d2547de-c912-0410-9cb9-b8ca96c0e9e2 --- diff --git a/FreeRTOS/Source/include/task.h b/FreeRTOS/Source/include/task.h index 64b73e91b..23aadd7ab 100644 --- a/FreeRTOS/Source/include/task.h +++ b/FreeRTOS/Source/include/task.h @@ -80,7 +80,6 @@ #error "include FreeRTOS.h must appear in source files before include task.h" #endif -#include "portable.h" #include "list.h" #ifdef __cplusplus diff --git a/FreeRTOS/Source/tasks.c b/FreeRTOS/Source/tasks.c index 403125724..91bd4ff70 100644 --- a/FreeRTOS/Source/tasks.c +++ b/FreeRTOS/Source/tasks.c @@ -168,7 +168,6 @@ typedef struct tskTaskControlBlock #define static #endif -/*lint -e956 */ PRIVILEGED_DATA tskTCB * volatile pxCurrentTCB = NULL; /* Lists for ready and blocked tasks. --------------------*/ @@ -470,8 +469,6 @@ static tskTCB *prvAllocateTCBAndStack( unsigned short usStackDepth, portSTACK_TY #endif -/*lint +e956 */ - signed portBASE_TYPE xTaskGenericCreate( pdTASK_CODE pxTaskCode, const signed char * const pcName, unsigned short usStackDepth, void *pvParameters, unsigned portBASE_TYPE uxPriority, xTaskHandle *pxCreatedTask, portSTACK_TYPE *puxStackBuffer, const xMemoryRegion * const xRegions ) { signed portBASE_TYPE xReturn; @@ -2181,7 +2178,7 @@ static portTASK_FUNCTION( prvIdleTask, pvParameters ) } #endif /* configUSE_TICKLESS_IDLE */ } -} /*lint !e715 pvParameters is not accessed but all task functions require the same prototype. */ +} /*-----------------------------------------------------------*/ #if configUSE_TICKLESS_IDLE != 0