RTX51 Tiny User's Guide

isr_set_ready

Summary
#include <rtx51tny.h>

char isr_set_ready (
  unsigned char task_id);     /* Task to ready */
Description

The isr_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.
  • This function may be called only from interrupt functions.
Return Value

None.

Example
#include <rtx51tny.h>

void tst_isr_set_ready (void) interrupt 2
{
isr_set_ready (1);    /* Set ready flag for task 1 */
}