Searched defs:AcquireFromConditionStruct (Results 1 – 1 of 1) sorted by relevance
932 struct AcquireFromConditionStruct { struct933 absl::Mutex mu0; // protects value, done934 int value; // times condition function is called; under mu0,935 bool done; // done with test? under mu0936 absl::Mutex mu1; // used to attempt to mess up state of mu0937 absl::CondVar cv; // so the condition function can be invoked from