]> git.sur5r.net Git - freertos/commitdiff
Add additional comment only.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 1 Jul 2013 09:05:15 +0000 (09:05 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Mon, 1 Jul 2013 09:05:15 +0000 (09:05 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@1959 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

FreeRTOS/Source/tasks.c

index 6bdf13c4f36af659886ba820ace3f5da590151c8..0dcb621b1e5725eeba5f35d766e7d1f693d1d4f1 100644 (file)
@@ -1606,6 +1606,9 @@ implementations require configUSE_TICKLESS_IDLE to be set to a value other than
 \r
        void vTaskStepTick( portTickType xTicksToJump )\r
        {\r
+               /* Correct the tick count value after a period during which the tick\r
+               was suppressed.  Note this does *not* call the tick hook function for\r
+               each stepped tick. */\r
                configASSERT( ( xTickCount + xTicksToJump ) <= xNextTaskUnblockTime );\r
                xTickCount += xTicksToJump;\r
        }\r