Home
last modified time | relevance | path

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

/llvm-project/llvm/unittests/Support/
H A DThreadSafeAllocatorTest.cpp20 struct AllocCondition { struct
21 std::mutex BusyLock, EndLock;
22 std::condition_variable Busy, End;
23 bool IsBusy = false, IsEnd = false;
24 std::atomic<unsigned> BytesAllocated = 0;
26 void startAllocation() { in startAllocation()
33 void waitAllocationStarted() { in waitAllocationStarted()
38 void finishAllocation() { in finishAllocation()
45 void waitAllocationFinished() { in waitAllocationFinished()