]> git.sur5r.net Git - freertos/commitdiff
Remove compiler warnings and insert missing return statement.
authorrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 20 May 2008 18:23:44 +0000 (18:23 +0000)
committerrichardbarry <richardbarry@1d2547de-c912-0410-9cb9-b8ca96c0e9e2>
Tue, 20 May 2008 18:23:44 +0000 (18:23 +0000)
git-svn-id: https://svn.code.sf.net/p/freertos/code/trunk@366 1d2547de-c912-0410-9cb9-b8ca96c0e9e2

Demo/PPC405_FPU_Xilinx_Virtex4_GCC/RTOSDemo/flop/flop-reg-test.c

index b2a4c09c440a4378130130c5de0a493914f1979b..355084dd493a5255051f5b9836350d0e6e2bc48f 100644 (file)
@@ -109,7 +109,7 @@ static void vFlopTest2( void *pvParameters );
 \r
 /* Buffers into which the flop registers will be saved.  There is a buffer for \r
 both tasks. */\r
-static volatile unsigned portLONG ulFlopRegisters[ flopNUMBER_OF_TASKS ][ portNO_FLOP_REGISTERS_TO_SAVE ] = { 0 };\r
+static volatile unsigned portLONG ulFlopRegisters[ flopNUMBER_OF_TASKS ][ portNO_FLOP_REGISTERS_TO_SAVE ];\r
 \r
 /* Variables that are incremented by the tasks to indicate that they are still\r
 running. */\r
@@ -156,6 +156,9 @@ unsigned portBASE_TYPE x, y, z = flopSTART_VALUE;
 \r
 static void vFlopTest1( void *pvParameters )\r
 {\r
+       /* Just to remove compiler warning. */\r
+       ( void ) pvParameters;\r
+\r
        for( ;; )\r
        {\r
                /* The values from the buffer should have now been written to the flop\r
@@ -176,6 +179,9 @@ static void vFlopTest1( void *pvParameters )
 \r
 static void vFlopTest2( void *pvParameters )\r
 {\r
+       /* Just to remove compiler warning. */\r
+       ( void ) pvParameters;\r
+\r
        for( ;; )\r
        {\r
                /* The values from the buffer should have now been written to the flop\r
@@ -232,5 +238,7 @@ static unsigned portLONG ulLastFlop1CycleCount = 0, ulLastFlop2CycleCount = 0;
 \r
        ulLastFlop1CycleCount = ulFlop1CycleCount;\r
        ulLastFlop2CycleCount = ulFlop2CycleCount;\r
+\r
+       return xReturn;\r
 }\r
 \r