이 메소드는 RiCOSSemaphore 오브젝트를 영구 삭제합니다.
시그니처void RiCOSSemaphore_destroy (RiCOSSemaphore *const me);
매개변수me
영구 삭제할 RiCOSSemaphore 오브젝트입니다.
예제void RiCOSSemaphore_destroy(RiCOSSemaphore * const me)
{
if (me == NULL) return;
RiCOSSemaphore_cleanup(me);
free(me);
}