Searched defs:cEventRefs (Results 1 - 2 of 2) sorted by relevance

/vbox/include/iprt/
H A Donce.h75 int32_t volatile cEventRefs; member in struct:RTONCE
/vbox/src/VBox/Runtime/common/misc/
H A Donce.cpp198 int32_t cRefs = ASMAtomicIncS32(&pOnce->cEventRefs); Assert(cRefs == 1); NOREF(cRefs);
207 cRefs = ASMAtomicDecS32(&pOnce->cEventRefs); Assert(cRefs == 0);
254 int32_t cEventRefs = ASMAtomicUoReadS32(&pOnce->cEventRefs); local
255 while ( cEventRefs > 0
258 if (ASMAtomicCmpXchgExS32(&pOnce->cEventRefs, cEventRefs + 1, cEventRefs, &cEventRefs))
262 if (cEventRefs <
[all...]

Completed in 55 milliseconds