Function esp_idf_sys::vApplicationStackOverflowHook
source ยท pub unsafe extern "C" fn vApplicationStackOverflowHook(
xTask: TaskHandle_t,
pcTaskName: *mut c_char,
)
Expand description
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.