mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-02 20:33:49 -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
|
@ -218,7 +218,7 @@ void vApplicationMallocFailedHook( void )
|
|||
FreeRTOSConfig.h, then this function will be called if a task overflows its
|
||||
stack space. See
|
||||
http://www.freertos.org/Stacks-and-stack-overflow-checking.html. */
|
||||
void vApplicationStackOverflowHook( xTaskHandle *pxTask, signed char *pcTaskName )
|
||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
||||
{
|
||||
for( ;; );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue