\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
\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
\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
\r
ulLastFlop1CycleCount = ulFlop1CycleCount;\r
ulLastFlop2CycleCount = ulFlop2CycleCount;\r
+\r
+ return xReturn;\r
}\r
\r