feat/support_fiber #6

Merged
tqcq merged 52 commits from feat/support_fiber into master 2024-08-11 13:03:04 +08:00
Showing only changes of commit 5d28389cac - Show all commits

View File

@ -30,8 +30,8 @@ class CondVarTest : public ::testing::Test {
protected: protected:
Mutex *m; Mutex *m;
CondVar *cv; CondVar *cv;
bool is_set; volatile bool is_set;
bool is_timeout; volatile bool is_timeout;
std::thread *worker; std::thread *worker;
}; };