摘要: #include <iostream> #include <mutex> #include <thread> #include <condition_variable> std::mutex mutex; std::condition_variable cond; void in_msg() { w 阅读全文
posted @ 2022-08-07 22:12 thomas_blog 阅读(38) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <mutex> using namespace std; class MyInstance { MyInstance(){} public: static MyInstance *getInstance() { std::call_once( 阅读全文
posted @ 2022-08-07 15:46 thomas_blog 阅读(165) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; class MyInstance { MyInstance(){} public: static MyInstance *getInstance() { if(m_instance == NULL) { m_insta 阅读全文
posted @ 2022-08-07 15:11 thomas_blog 阅读(18) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <mutex> #include <thread> void msg_func() { std::mutex mutex; while(1) { std::unique_lock<std::mutex> unique(mutex); std: 阅读全文
posted @ 2022-08-07 13:26 thomas_blog 阅读(89) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <mutex> #include <thread> void msg_func() { std::mutex mutex; while(1) { std::unique_lock<std::mutex> unique(mutex, std:: 阅读全文
posted @ 2022-08-07 13:19 thomas_blog 阅读(75) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <mutex> #include <thread> void msg_func() { std::mutex mutex; while(1) { std::unique_lock<std::mutex> unique(mutex, std:: 阅读全文
posted @ 2022-08-07 13:08 thomas_blog 阅读(98) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <mutex> #include <thread> void msg_func() { std::mutex mutex; while(1) { mutex.lock(); std::unique_lock<std::mutex> uniqu 阅读全文
posted @ 2022-08-07 12:47 thomas_blog 阅读(120) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <mutex> #include <thread> void msg_func() { std::mutex mutex; while(1) { std::unique_lock<std::mutex> unique(mutex); std: 阅读全文
posted @ 2022-08-07 12:37 thomas_blog 阅读(38) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <mutex> #include <thread> void msg_func() { std::mutex mutex; while(1) { std::lock_guard<std::mutex> guard(mutex); std::c 阅读全文
posted @ 2022-08-07 12:08 thomas_blog 阅读(68) 评论(0) 推荐(0) 编辑