mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-04-20 05:21:59 -04:00
Commit before update to include overflow list functionality.
This commit is contained in:
parent
f9148de3cc
commit
0552fc86bf
|
@ -112,12 +112,6 @@ static void prvCheckForValidListAndQueue( void ) PRIVILEGED_FUNCTION;
|
||||||
*/
|
*/
|
||||||
static void prvTimerTask( void *pvParameters ) PRIVILEGED_FUNCTION;
|
static void prvTimerTask( void *pvParameters ) PRIVILEGED_FUNCTION;
|
||||||
|
|
||||||
/*
|
|
||||||
* The following functions handle the commands that are sent to the timer
|
|
||||||
* service task via the xTimerQueue queue.
|
|
||||||
*/
|
|
||||||
static void prvTimerStart( xTIMER *pxTimer ) PRIVILEGED_FUNCTION;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Called by the timer service task to interpret and process a command it
|
* Called by the timer service task to interpret and process a command it
|
||||||
* received on the timer queue.
|
* received on the timer queue.
|
||||||
|
@ -138,7 +132,7 @@ portBASE_TYPE xReturn = pdFAIL;
|
||||||
|
|
||||||
if( xTimerQueue != NULL )
|
if( xTimerQueue != NULL )
|
||||||
{
|
{
|
||||||
xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Timers", configTIMER_TASK_STACK_DEPTH, NULL, configTIMER_TASK_PRIORITY, NULL );
|
xReturn = xTaskCreate( prvTimerTask, ( const signed char * ) "Timer Service", configTIMER_TASK_STACK_DEPTH, NULL, configTIMER_TASK_PRIORITY, NULL );
|
||||||
}
|
}
|
||||||
|
|
||||||
return xReturn;
|
return xReturn;
|
||||||
|
|
Loading…
Reference in a new issue