RTX166 Tiny User's Guide

os_delete_task

Summary
#include <rtx166t.h>

int os_delete_task (
  int task_id);       /* task to delete */
Description

The os_delete_task function stops the task specified by task_id and removes it from the task list.

Note

  • This function is part of the RTX166 Tiny Real-Time Operating System.
Return Value

The os_delete_task function returns a value of 0 if the task was successfully stopped and deleted. A return value of -1 indicates the specified task does not exist or has not been started.

Note

  • A task switch is performed immediately if a task deletes itself.
See Also

os_create_task

Example
#include <rtx166t.h>
#include <stdio.h>            /* for printf */

void tst_os_delete_task (void) _task_ 0
{
.
.
.
if (os_delete_task (2))
  {
  printf ("Couldn't stop task 2\n");
  }
.
.
.
}