|
| os_set_ready| Summary | |
#include <rtx51tny.h>
char os_set_ready (
unsigned char task_id); /* Task to make ready */
| | Description | | The os_set_ready function places the task specified by task_id into the ready state. Note - This function is part of the RTX51 Tiny Real-Time Operating System which is included only with the PK51 Professional Developer's Kit.
| | Return Value | | None. | | Example | |
#include <rtx51tny.h>
void ready_func (void) _task_ 2
{
.
.
.
os_set_ready (1); /* Set ready flag for task 1 */
.
.
.
}
|
|
|