ZestCode
 
Loading...
Searching...
No Matches
task_resume

task. h

void task_resume( task_t xTaskToResume );

INCLUDE_vTaskSuspend must be defined as 1 for this function to be available. See the configuration section for more information.

Resumes a suspended task.

A task that has been suspended by one or more calls to task_suspend () will be made available for running again by a single call to task_resume ().

Parameters
xTaskToResumeHandle to the task being readied.

Example usage:

void vAFunction( void )
{
task_t xHandle;

    // Create a task, storing the handle.
    task_create( vTaskCode, "NAME", STACK_SIZE, NULL, tskIDLE_PRIORITY, &xHandle );

    // ...

    // Use the handle to suspend the created task.
    task_suspend( xHandle );

    // ...

    // The created task will not run during this period, unless
    // another task calls task_resume( xHandle ).

    //...


    // Resume the suspended task ourselves.
    task_resume( xHandle );

    // The created task will once again get microcontroller processing
    // time in accordance with its priority within the system.
}