Exemple #1
0
void
OSInitCond(OSCondition *condition)
{
   OSInitCondEx(condition, nullptr);
}
void
OSFastCond_Init(OSFastCondition *condition, const char *name)
{
   OSInitCondEx(reinterpret_cast<OSCondition*>(condition), name);
}
void
OSFastCond_Init(FastConditionHandle handle, char *name)
{
   OSInitCondEx(handle, name);
}
/**
 * Initialise a condition variable structure.
 */
void
OSInitCond(virt_ptr<OSCondition> condition)
{
   OSInitCondEx(condition, nullptr);
}