Change 'signed char *pcTaskName) to 'char *pcTaskName' in vApplicationStackOverflowHook().

This commit is contained in:
Richard Barry 2013-12-27 16:30:19 +00:00
parent 3517bbdcce
commit f292243dcf
85 changed files with 112 additions and 112 deletions

View file

@ -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( ;; );
}

View file

@ -222,7 +222,7 @@ void vApplicationIdleHook( void );
* it is possible that the stack overflow will have corrupted these - in which
* case pxCurrentTCB can be inspected to find the same information.
*/
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName );
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName );
/*
* The reg test tasks as described at the top of this file.
@ -437,7 +437,7 @@ void vApplicationMallocFailedHook( void )
/* This function is explained by the comments above its prototype at the top
of this file. */
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
{
for( ;; );
}