Searched defs:OrderMaintenanceInfo (Results 1 – 1 of 1) sorted by relevance
309 struct OrderMaintenanceInfo { struct310 uint32_t sequenceNumber = 0;311 Lock lock;312 ConditionVariable cv;314 uint32_t refcount = 1;316 void incRef() { __atomic_add_fetch(&refcount, 1, __ATOMIC_SEQ_CST); } in incRef()318 bool decRef() { return 0 == __atomic_sub_fetch(&refcount, 1, __ATOMIC_SEQ_CST); } in decRef()