* @brief Get pointer to the next task in the scheduler's task chain * * Returns a pointer to the task that follows this task in the scheduler's * internal linked list. This enables forward chain traversal, task enumeration, * and advanced scheduler analysis for custom task management operations. * * @return Task* Pointer to the next task in the chain, or nullptr if:
| 2194 | * @endcode |
| 2195 | */ |
| 2196 | __TASK_INLINE Task* getNextTask() { return iNext; }; |
| 2197 | #endif // _TASK_EXPOSE_CHAIN |
| 2198 | |
| 2199 | _TASK_SCOPE: |
nothing calls this directly
no outgoing calls
no test coverage detected