]> git.sur5r.net Git - freertos/commitdiff
Remove references to ulCriticalNesting from the register test tasks as the variable...
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 15 Feb 2008 13:46:30 +0000 (13:46 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Fri, 15 Feb 2008 13:46:30 +0000 (13:46 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@192 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/MB91460_Softune/SRC/main.c

index 4f2e2cd4f47f9d717fcd69d057fd1b1184309faa..9ec92d97c9754c078e7243e7716b5a455e2110c2 100644 (file)
@@ -164,9 +164,6 @@ static void vSecondRegisterTestTask( void *pvParameters );
 register test tasks. */\r
 unsigned portLONG ulRegTestError = pdFALSE;\r
 \r
-/* Variables used to ensure the register check tasks are still executing. */\r
-static volatile unsigned portLONG ulRegTest1Counter = 0UL, ulRegTest2Counter = 0UL;\r
-\r
 /*---------------------------------------------------------------------------*/\r
 \r
 /* Start all the demo application tasks, then start the scheduler. */\r
@@ -255,7 +252,6 @@ portTickType xDelayPeriod = mainNO_ERROR_CHECK_DELAY, xLastExecutionTime;
 static portSHORT prvCheckOtherTasksAreStillRunning( void )\r
 {\r
 portBASE_TYPE lReturn = pdPASS;\r
-static unsigned portLONG ulLastRegTest1Counter = 0UL, ulLastRegTest2Counter = 0UL;\r
 \r
        /* The demo tasks maintain a count that increments every cycle of the task\r
        provided that the task has never encountered an error.  This function \r
@@ -324,22 +320,6 @@ static unsigned portLONG ulLastRegTest1Counter = 0UL, ulLastRegTest2Counter = 0U
                lReturn = pdFAIL;\r
        }\r
 \r
-       /* Are the register test tasks still running? */\r
-       if( ulLastRegTest1Counter == ulRegTest1Counter )\r
-       {\r
-               lReturn = pdFAIL;\r
-       }\r
-       \r
-       if( ulLastRegTest2Counter == ulRegTest2Counter )\r
-       {\r
-               lReturn = pdFAIL;\r
-       }\r
-\r
-       /* Record the current values of the register check cycle counters so we\r
-       can ensure they are still running the next time this function is called. */\r
-       ulLastRegTest1Counter = ulRegTest1Counter;\r
-       ulLastRegTest2Counter = ulRegTest2Counter;\r
-\r
        return lReturn;\r
 }\r
 /*-----------------------------------------------------------*/\r
@@ -408,11 +388,7 @@ extern volatile unsigned portLONG ulCriticalNesting;
        /* Fills the registers with known values (different to the values\r
        used in vSecondRegisterTestTask()), then checks that the registers still\r
        all contain the expected value.  This is done to test the context save\r
-       and restore mechanism as this task is swapped onto and off of the CPU.\r
-\r
-       The critical nesting depth is also saved as part of the context so also\r
-       check this maintains an expected value. */\r
-       ulCriticalNesting = 0x12345678;\r
+       and restore mechanism as this task is swapped onto and off of the CPU. */\r
 \r
        for( ;; )\r
        {\r
@@ -499,13 +475,6 @@ extern volatile unsigned portLONG ulCriticalNesting;
 \r
 \r
                #pragma endasm\r
-\r
-               ulRegTest1Counter++;\r
-\r
-               if( ulCriticalNesting != 0x12345678 )\r
-               {\r
-                       ulRegTestError = pdTRUE;\r
-               }\r
        }\r
 }\r
 /*-----------------------------------------------------------*/\r
@@ -517,11 +486,7 @@ extern volatile unsigned portLONG ulCriticalNesting;
        /* Fills the registers with known values (different to the values\r
        used in vFirstRegisterTestTask()), then checks that the registers still\r
        all contain the expected value.  This is done to test the context save\r
-       and restore mechanism as this task is swapped onto and off of the CPU.\r
-\r
-       The critical nesting depth is also saved as part of the context so also\r
-       check this maintains an expected value. */\r
-       ulCriticalNesting = 0x87654321;\r
+       and restore mechanism as this task is swapped onto and off of the CPU. */\r
 \r
        for( ;; )\r
        {\r
@@ -614,13 +579,6 @@ extern volatile unsigned portLONG ulCriticalNesting;
 \r
 \r
                #pragma endasm\r
-\r
-               ulRegTest2Counter++;\r
-\r
-               if( ulCriticalNesting != 0x87654321 )\r
-               {\r
-                       ulRegTestError = pdTRUE;\r
-               }\r
        }\r
 }\r
 /*-----------------------------------------------------------*/\r