mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-02 04:13:54 -04:00
Correct the prototype of the function call vApplicationStackOverflowHook().
This commit is contained in:
parent
c92a2fe47e
commit
93e72e5036
52 changed files with 66 additions and 63 deletions
|
@ -151,7 +151,7 @@ static void prvLCDTask( void *pvParameters );
|
|||
* Hook functions that can get called by the kernel. The 'check' functionality
|
||||
* is implemented within the tick hook.
|
||||
*/
|
||||
void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName );
|
||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
|
||||
|
||||
/*
|
||||
* The tick hook function as described in the comments at the top of this file.
|
||||
|
@ -268,7 +268,7 @@ portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
|
|||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName )
|
||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
||||
{
|
||||
( void ) pxTask;
|
||||
( void ) pcTaskName;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue