getOSHandle

This method returns a handle to the underlying operating system task.

Signature
RiCOSHandle RiCOSTask_getOSHandle (RiCOSTask *const me);
Parameters
me

The RiCOSTask object whose handle you want to retrieve

Returns

The operating system handle

Example
RiCOSHandle RiCOSTask_getOSHandle(RiCOSTask * const me)
{
   if (me == NULL) {return 0;}
   return (RiCOSHandle)me->hThread;
}

Feedback