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