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