* @brief Callback function for getCurrentTask test * * Captures the current task pointer for verification. */
| 165 | * Captures the current task pointer for verification. |
| 166 | */ |
| 167 | void current_task_callback() { |
| 168 | global_current_task_ptr = global_scheduler_ptr->getCurrentTask(); |
| 169 | test_output.push_back("got_current_task"); |
| 170 | } |
| 171 | |
| 172 | |
| 173 | /** |
nothing calls this directly
no test coverage detected