pub unsafe extern "C" fn xTaskGetCurrentTaskHandleForCore(
xCoreID: i32,
) -> *mut tskTaskControlBlock
Expand description
@brief Get the handle of the task currently running on a certain core
Because of the nature of SMP processing, there is no guarantee that this value will still be valid on return and should only be used for debugging purposes.
[refactor-todo] See if this needs to be deprecated (IDF-8145)
@param xCoreID The core to query @return Handle of the current task running on the queried core