This method returns a handle to the underlying operating system task.
RiCOSHandle RiCOSTask_getOSHandle (RiCOSTask *const me);
me
The RiCOSTask object whose handle you want to retrieve
The operating system handle
RiCOSHandle RiCOSTask_getOSHandle(RiCOSTask * const me)
{
if (me == NULL) {return 0;}
return (RiCOSHandle)me->hThread;
}