이 메소드는 현재
태스크 이외의 태스크를 종료합니다.
시그니처RiCBoolean RiCOSTask_endOtherTask (void * t);
리턴값이
메소드는 태스크를 종료한 경우 RiCTRUE를
리턴합니다.
예제RiCBoolean RiCOSTask_endOtherTask(void *hThread)
{
taskDeleteForce((int)hThread);
/* Force because this is probably waiting on
something */
return RiCTRUE;
}