mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-08-19 09:38:32 -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
|
@ -163,7 +163,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, char *pcTaskName );
|
||||
|
||||
/*
|
||||
* The tick hook function as described in the comments at the top of this file.
|
||||
|
@ -280,7 +280,7 @@ portBASE_TYPE xHigherPriorityTaskWoken = pdFALSE;
|
|||
}
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, signed char *pcTaskName )
|
||||
void vApplicationStackOverflowHook( xTaskHandle pxTask, char *pcTaskName )
|
||||
{
|
||||
( void ) pxTask;
|
||||
( void ) pcTaskName;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue