MCPcopy Create free account
hub / github.com/arkhipenko/TaskScheduler / getPreviousTask

Method getPreviousTask

src/TaskSchedulerDeclarations.h:2130–2130  ·  view source on GitHub ↗

* @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:

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected