示例#1
0
void
OSInitSemaphore(OSSemaphore *semaphore, int32_t count)
{
   OSInitSemaphoreEx(semaphore, count, nullptr);
}
void
OSInitSemaphore(SemaphoreHandle handle, int32_t count)
{
   OSInitSemaphoreEx(handle, count, nullptr);
}