mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-01 11:53:53 -04:00
Change 'signed char *pcTaskName) to 'char *pcTaskName' in vApplicationStackOverflowHook().
This commit is contained in:
parent
3517bbdcce
commit
f292243dcf
85 changed files with 112 additions and 112 deletions
|
@ -230,7 +230,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, char *pcTaskName )
|
||||
{
|
||||
for( ;; );
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue