endOtherTask

이 메소드는 현재 태스크 이외의 태스크를 종료합니다.

시그니처
RiCBoolean RiCOSTask_endOtherTask (void * t);
매개변수
t

종료할 태스크입니다.

리턴값

이 메소드는 태스크를 종료한 경우 RiCTRUE를 리턴합니다.

예제
RiCBoolean RiCOSTask_endOtherTask(void *hThread)
{
   taskDeleteForce((int)hThread);
   /* Force because this is probably waiting on 
      something */
   return RiCTRUE;
}

피드백