task. h
long BaseType_t
Definition portmacro.h:59
BaseType_t xTaskResumeAll(void)
Definition tasks.c:3956
Resumes scheduler activity after it was suspended by a call to vTaskSuspendAll().
xTaskResumeAll() only resumes the scheduler. It does not unsuspend tasks that were previously suspended by a call to vTaskSuspend().
- Returns
- If resuming the scheduler caused a context switch then pdTRUE is returned, otherwise pdFALSE is returned.
Example usage:
void vTask1( void * pvParameters )
{
for( ;; )
{
{
}
}
}
#define taskYIELD()
Definition task.h:213
void vTaskSuspendAll(void)
Definition tasks.c:3811