]> git.sur5r.net Git - freertos/commitdiff
Tidy up comments only.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sun, 14 Jul 2013 13:09:18 +0000 (13:09 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Sun, 14 Jul 2013 13:09:18 +0000 (13:09 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1981 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Source/include/task.h
FreeRTOS/Source/tasks.c

index 64b73e91b115a17fa07b9fe1c8584ef8ebbffb3a..23aadd7ab51e8bd47da801b8fffe9a0a717f0108 100644 (file)
@@ -80,7 +80,6 @@
        #error "include FreeRTOS.h must appear in source files before include task.h"\r
 #endif\r
 \r
-#include "portable.h"\r
 #include "list.h"\r
 \r
 #ifdef __cplusplus\r
index 403125724b58468a6b8073cedd1e717a27fb60ad..91bd4ff70ea21514a4b8e62ad9a3a9cb148c1a37 100644 (file)
@@ -168,7 +168,6 @@ typedef struct tskTaskControlBlock
        #define static\r
 #endif\r
 \r
-/*lint -e956 */\r
 PRIVILEGED_DATA tskTCB * volatile pxCurrentTCB = NULL;\r
 \r
 /* Lists for ready and blocked tasks. --------------------*/\r
@@ -470,8 +469,6 @@ static tskTCB *prvAllocateTCBAndStack( unsigned short usStackDepth, portSTACK_TY
 \r
 #endif\r
 \r
-/*lint +e956 */\r
-\r
 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 )\r
 {\r
 signed portBASE_TYPE xReturn;\r
@@ -2181,7 +2178,7 @@ static portTASK_FUNCTION( prvIdleTask, pvParameters )
                }\r
                #endif /* configUSE_TICKLESS_IDLE */\r
        }\r
-} /*lint !e715 pvParameters is not accessed but all task functions require the same prototype. */\r
+}\r
 /*-----------------------------------------------------------*/\r
 \r
 #if configUSE_TICKLESS_IDLE != 0\r