pub unsafe extern "C" fn vApplicationStackOverflowHook(
    xTask: TaskHandle_t,
    pcTaskName: *mut c_char
)
Expand description

@cond !DOC_EXCLUDE_HEADER_SECTION task.h @code{c} void vApplicationStackOverflowHook( TaskHandle_t xTask char *pcTaskName); @endcode @endcond The application stack overflow hook is called when a stack overflow is detected for a task.

Details on stack overflow detection can be found here: https://www.FreeRTOS.org/Stacks-and-stack-overflow-checking.html

@param xTask the task that just exceeded its stack boundaries. @param pcTaskName A character string containing the name of the offending task.