OS_Task_IsPaused (OST_TASK_POINTER tp)
Check if another task is paused.
Everywhere
tp |
Pointer to task descriptor (OST_TASK_POINTER) |
nothing
false |
task is not paused |
true |
task is paused |
OST_MSG_CB msg_cb; void Task (void) { for (;;) { /*...*/ if (OS_Task_IsPaused (tp)) { OS_Msg_Send(msg_cb, "Paused."); }; /*...*/ } }
OS_IsTaskPaused