Searched refs:DT_SHARE (Results 1 – 4 of 4) sorted by relevance
86 if((type&DT_SHARE) && in dtcustomize()87 (!dt->meth->eventf || (*dt->meth->eventf)(dt, DT_SHARE, (Void_t*)((long)action)) >= 0) ) in dtcustomize()89 dt->data->type &= ~DT_SHARE; in dtcustomize()90 else dt->data->type |= DT_SHARE; in dtcustomize()91 done |= DT_SHARE; in dtcustomize()
126 #define DTSETLOCK(dt) (((dt)->data->type&DT_SHARE) ? asolock(&(dt)->data->lock,1,ASO_SPINLOCK) : 0…127 #define DTCLRLOCK(dt) (((dt)->data->type&DT_SHARE) ? asolock(&(dt)->data->lock,1,ASO_UNLOCK) : 0 )
241 /**/DEBUG_ASSERT((dt->data->type&DT_SHARE) || size == dt->data->size);
214 #define DT_SHARE 0020000000 /* concurrent access mode */ macro