mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-09-12 09:07:46 -04:00
removed externs from new prototypes
This commit is contained in:
parent
c5b5f3fa07
commit
44e5d647d2
1 changed files with 2 additions and 2 deletions
|
@ -1547,7 +1547,7 @@
|
||||||
*
|
*
|
||||||
* This hook function is called in the system tick handler after any OS work is completed.
|
* This hook function is called in the system tick handler after any OS work is completed.
|
||||||
*/
|
*/
|
||||||
extern void vApplicationTickHook( void ); /*lint !e526 Symbol not defined as it is an application callback. */
|
void vApplicationTickHook( void ); /*lint !e526 Symbol not defined as it is an application callback. */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Callback function prototypes. --------------------------*/
|
/* Callback function prototypes. --------------------------*/
|
||||||
|
@ -1578,7 +1578,7 @@ void vApplicationStackOverflowHook( TaskHandle_t xTask,
|
||||||
* and TCB.
|
* and TCB.
|
||||||
* https://www.freertos.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
|
* https://www.freertos.org/a00110.html#configSUPPORT_STATIC_ALLOCATION
|
||||||
*/
|
*/
|
||||||
extern void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer,
|
void vApplicationGetIdleTaskMemory( StaticTask_t ** ppxIdleTaskTCBBuffer,
|
||||||
StackType_t ** ppxIdleTaskStackBuffer,
|
StackType_t ** ppxIdleTaskStackBuffer,
|
||||||
uint32_t * pulIdleTaskStackSize ); /*lint !e526 Symbol not defined as it is an application callback. */
|
uint32_t * pulIdleTaskStackSize ); /*lint !e526 Symbol not defined as it is an application callback. */
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue