endMyTask

This method terminates the current task.

Signature
void RiCOSTask_endMyTask (void * t);
Parameters
t

The current task

Example
void RiCOSTask_endMyTask(void *hThread)
{
   taskDeleteForce((int)hThread); 
   /* Force because this is probably waiting on
      something */
}

Feedback