This method terminates a
task other than the current task.
SignatureRiCBoolean RiCOSTask_endOtherTask (void * t);
Parameterst
The task to end
ReturnsThe
method returns RiCTRUE if it successfully terminated
the task.
ExampleRiCBoolean RiCOSTask_endOtherTask(void *hThread)
{
taskDeleteForce((int)hThread);
/* Force because this is probably waiting on
something */
return RiCTRUE;
}