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