mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 20:03:50 -04:00
Check in before attempting to remove absolute paths in PPC405 project.
This commit is contained in:
parent
5cb4e9b5a6
commit
ebfede454f
5 changed files with 22 additions and 65 deletions
|
@ -139,7 +139,7 @@ discover an unexpected value. */
|
|||
static unsigned portBASE_TYPE xRegTestStatus = pdPASS;
|
||||
|
||||
/* Counters used to ensure the regtest tasks are still running. */
|
||||
static unsigned portLONG ulRegTest1Counter = 0UL, ulRegTest2Counter = 0UL;
|
||||
static volatile unsigned portLONG ulRegTest1Counter = 0UL, ulRegTest2Counter = 0UL;
|
||||
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
|
@ -332,20 +332,26 @@ static void prvSetupHardware( void )
|
|||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
static void prvRegTest1Pass( void )
|
||||
void prvRegTest1Pass( void )
|
||||
{
|
||||
/* Called from the inline assembler - this cannot be static
|
||||
otherwise it can get optimised away. */
|
||||
ulRegTest1Counter++;
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
static void prvRegTest2Pass( void )
|
||||
void prvRegTest2Pass( void )
|
||||
{
|
||||
/* Called from the inline assembler - this cannot be static
|
||||
otherwise it can get optimised away. */
|
||||
ulRegTest2Counter++;
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
static void prvRegTestFail( void )
|
||||
void prvRegTestFail( void )
|
||||
{
|
||||
/* Called from the inline assembler - this cannot be static
|
||||
otherwise it can get optimised away. */
|
||||
xRegTestStatus = pdFAIL;
|
||||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue