Searched defs:AcquireFromConditionStruct (Results 1 – 2 of 2) sorted by relevance
933 struct AcquireFromConditionStruct { struct934 absl::Mutex mu0; // protects value, done935 int value; // times condition function is called; under mu0,936 bool done; // done with test? under mu0937 absl::Mutex mu1; // used to attempt to mess up state of mu0938 absl::CondVar cv; // so the condition function can be invoked from
967 struct AcquireFromConditionStruct { struct968 absl::Mutex mu0; // protects value, done969 int value; // times condition function is called; under mu0,970 bool done; // done with test? under mu0971 absl::Mutex mu1; // used to attempt to mess up state of mu0972 absl::CondVar cv; // so the condition function can be invoked from