Searched defs:OrderMaintenanceInfo (Results 1 – 1 of 1) sorted by relevance
246 struct OrderMaintenanceInfo { struct247 uint32_t sequenceNumber = 0;248 Lock lock;249 ConditionVariable cv;251 uint32_t refcount = 1;253 void incRef() { __atomic_add_fetch(&refcount, 1, __ATOMIC_SEQ_CST); } in incRef()255 bool decRef() { return 0 == __atomic_sub_fetch(&refcount, 1, __ATOMIC_SEQ_CST); } in decRef()