Home
last modified time | relevance | path

Searched defs:SyncVar (Results 1 – 2 of 2) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
Dtsan_sync.h49 struct SyncVar { struct
52 uptr addr; // overwritten by DenseSlabAlloc freelist
53 Mutex mtx;
54 u64 uid; // Globally unique id.
55 u32 creation_stack_id;
56 u32 owner_tid; // Set only by exclusive owners.
57 u64 last_lock;
58 int recursion;
59 atomic_uint32_t flags;
60 u32 next; // in MetaMap
[all …]
Dtsan_sync.cpp21 SyncVar::SyncVar() : mtx(MutexTypeSyncVar) { Reset(0); } in SyncVar() function in __tsan::SyncVar