|
|
|
@ -73,16 +73,16 @@
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Creates eight tasks, each of which loops continuously performing an (emulated)
|
|
|
|
|
* floating point calculation.
|
|
|
|
|
* Creates eight tasks, each of which loops continuously performing a floating
|
|
|
|
|
* point calculation.
|
|
|
|
|
*
|
|
|
|
|
* All the tasks run at the idle priority and never block or yield. This causes
|
|
|
|
|
* all eight tasks to time slice with the idle task. Running at the idle priority
|
|
|
|
|
* means that these tasks will get pre-empted any time another task is ready to run
|
|
|
|
|
* or a time slice occurs. More often than not the pre-emption will occur mid
|
|
|
|
|
* calculation, creating a good test of the schedulers context switch mechanism - a
|
|
|
|
|
* calculation producing an unexpected result could be a symptom of a corruption in
|
|
|
|
|
* the context of a task.
|
|
|
|
|
* all eight tasks to time slice with the idle task. Running at the idle
|
|
|
|
|
* priority means that these tasks will get pre-empted any time another task is
|
|
|
|
|
* ready to run or a time slice occurs. More often than not the pre-emption
|
|
|
|
|
* will occur mid calculation, creating a good test of the schedulers context
|
|
|
|
|
* switch mechanism - a calculation producing an unexpected result could be a
|
|
|
|
|
* symptom of a corruption in the context of a task.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
@ -96,7 +96,7 @@
|
|
|
|
|
#include "flop.h"
|
|
|
|
|
|
|
|
|
|
#define mathSTACK_SIZE configMINIMAL_STACK_SIZE
|
|
|
|
|
#define mathNUMBER_OF_TASKS ( 8 )
|
|
|
|
|
#define mathNUMBER_OF_TASKS ( 4 )
|
|
|
|
|
|
|
|
|
|
/* Four tasks, each of which performs a different floating point calculation.
|
|
|
|
|
Each of the four is created twice. */
|
|
|
|
@ -106,8 +106,7 @@ static portTASK_FUNCTION_PROTO( vCompetingMathTask3, pvParameters );
|
|
|
|
|
static portTASK_FUNCTION_PROTO( vCompetingMathTask4, pvParameters );
|
|
|
|
|
|
|
|
|
|
/* These variables are used to check that all the tasks are still running. If a
|
|
|
|
|
task gets a calculation wrong it will
|
|
|
|
|
stop incrementing its check variable. */
|
|
|
|
|
task gets a calculation wrong it will stop setting its check variable. */
|
|
|
|
|
static volatile unsigned short usTaskCheck[ mathNUMBER_OF_TASKS ] = { ( unsigned short ) 0 };
|
|
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
@ -118,10 +117,6 @@ void vStartMathTasks( unsigned portBASE_TYPE uxPriority )
|
|
|
|
|
xTaskCreate( vCompetingMathTask2, ( signed char * ) "Math2", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 1 ] ), uxPriority, NULL );
|
|
|
|
|
xTaskCreate( vCompetingMathTask3, ( signed char * ) "Math3", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 2 ] ), uxPriority, NULL );
|
|
|
|
|
xTaskCreate( vCompetingMathTask4, ( signed char * ) "Math4", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 3 ] ), uxPriority, NULL );
|
|
|
|
|
xTaskCreate( vCompetingMathTask1, ( signed char * ) "Math5", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 4 ] ), uxPriority, NULL );
|
|
|
|
|
xTaskCreate( vCompetingMathTask2, ( signed char * ) "Math6", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 5 ] ), uxPriority, NULL );
|
|
|
|
|
xTaskCreate( vCompetingMathTask3, ( signed char * ) "Math7", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 6 ] ), uxPriority, NULL );
|
|
|
|
|
xTaskCreate( vCompetingMathTask4, ( signed char * ) "Math8", mathSTACK_SIZE, ( void * ) &( usTaskCheck[ 7 ] ), uxPriority, NULL );
|
|
|
|
|
}
|
|
|
|
|
/*-----------------------------------------------------------*/
|
|
|
|
|
|
|
|
|
@ -169,9 +164,10 @@ short sError = pdFALSE;
|
|
|
|
|
|
|
|
|
|
if( sError == pdFALSE )
|
|
|
|
|
{
|
|
|
|
|
/* If the calculation has always been correct, increment the check
|
|
|
|
|
variable so we know this task is still running okay. */
|
|
|
|
|
( *pusTaskCheckVariable )++;
|
|
|
|
|
/* If the calculation has always been correct then set set the check
|
|
|
|
|
variable. The check variable will get set to pdFALSE each time
|
|
|
|
|
xAreMathsTaskStillRunning() is executed. */
|
|
|
|
|
( *pusTaskCheckVariable ) = pdTRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if configUSE_PREEMPTION == 0
|
|
|
|
@ -227,10 +223,10 @@ short sError = pdFALSE;
|
|
|
|
|
|
|
|
|
|
if( sError == pdFALSE )
|
|
|
|
|
{
|
|
|
|
|
/* If the calculation has always been correct, increment the check
|
|
|
|
|
variable so we know
|
|
|
|
|
this task is still running okay. */
|
|
|
|
|
( *pusTaskCheckVariable )++;
|
|
|
|
|
/* If the calculation has always been correct then set set the check
|
|
|
|
|
variable. The check variable will get set to pdFALSE each time
|
|
|
|
|
xAreMathsTaskStillRunning() is executed. */
|
|
|
|
|
( *pusTaskCheckVariable ) = pdTRUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if configUSE_PREEMPTION == 0
|
|
|
|
@ -294,9 +290,10 @@ short sError = pdFALSE;
|
|
|
|
|
|
|
|
|
|
if( sError == pdFALSE )
|
|
|
|
|
{
|
|
|
|
|
/* If the calculation has always been correct, increment the check
|
|
|
|
|
variable so we know this task is still running okay. */
|
|
|
|
|
( *pusTaskCheckVariable )++;
|
|
|
|
|
/* If the calculation has always been correct then set set the check
|
|
|
|
|
variable. The check variable will get set to pdFALSE each time
|
|
|
|
|
xAreMathsTaskStillRunning() is executed. */
|
|
|
|
|
( *pusTaskCheckVariable ) = pdTRUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -356,9 +353,10 @@ short sError = pdFALSE;
|
|
|
|
|
|
|
|
|
|
if( sError == pdFALSE )
|
|
|
|
|
{
|
|
|
|
|
/* If the calculation has always been correct, increment the check
|
|
|
|
|
variable so we know this task is still running okay. */
|
|
|
|
|
( *pusTaskCheckVariable )++;
|
|
|
|
|
/* If the calculation has always been correct then set set the check
|
|
|
|
|
variable. The check variable will get set to pdFALSE each time
|
|
|
|
|
xAreMathsTaskStillRunning() is executed. */
|
|
|
|
|
( *pusTaskCheckVariable ) = pdTRUE;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
@ -367,22 +365,24 @@ short sError = pdFALSE;
|
|
|
|
|
/* This is called to check that all the created tasks are still running. */
|
|
|
|
|
portBASE_TYPE xAreMathsTaskStillRunning( void )
|
|
|
|
|
{
|
|
|
|
|
/* Keep a history of the check variables so we know if they have been incremented
|
|
|
|
|
since the last call. */
|
|
|
|
|
static unsigned short usLastTaskCheck[ mathNUMBER_OF_TASKS ] = { ( unsigned short ) 0 };
|
|
|
|
|
portBASE_TYPE xReturn = pdTRUE, xTask;
|
|
|
|
|
portBASE_TYPE xReturn = pdPASS, xTask;
|
|
|
|
|
|
|
|
|
|
/* Check the maths tasks are still running by ensuring their check variables
|
|
|
|
|
are still incrementing. */
|
|
|
|
|
have been set to pdPASS. */
|
|
|
|
|
for( xTask = 0; xTask < mathNUMBER_OF_TASKS; xTask++ )
|
|
|
|
|
{
|
|
|
|
|
if( usTaskCheck[ xTask ] == usLastTaskCheck[ xTask ] )
|
|
|
|
|
if( usTaskCheck[ xTask ] != pdTRUE )
|
|
|
|
|
{
|
|
|
|
|
/* The check has not incremented so an error exists. */
|
|
|
|
|
xReturn = pdFALSE;
|
|
|
|
|
/* The check has not been set so the associated task has either
|
|
|
|
|
stalled or detected an error. */
|
|
|
|
|
xReturn = pdFAIL;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
/* Reset the variable so it can be checked again the next time this
|
|
|
|
|
function is executed. */
|
|
|
|
|
usTaskCheck[ xTask ] = pdFALSE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
usLastTaskCheck[ xTask ] = usTaskCheck[ xTask ];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return xReturn;
|
|
|
|
|