* @brief Get pointer to the previous task in the scheduler's task chain * * Returns a pointer to the task that precedes this task in the scheduler's * internal linked list. This enables task chain traversal, debugging, and * advanced task management operations for custom scheduler behaviors. * * @return Task* Pointer to the previous task in the chain, or nullptr if:
| 2128 | * @endcode |
| 2129 | */ |
| 2130 | __TASK_INLINE Task* getPreviousTask() { return iPrev; }; |
| 2131 | |
| 2132 | /** |
| 2133 | * @brief Get pointer to the next task in the scheduler's task chain |
nothing calls this directly
no outgoing calls
no test coverage detected