2017年1月17日
摘要: 1 // boost 条件变量 2 // 做个简单的笔记 3 4 #include 5 #include 6 7 8 boost::mutex m_mutex; 9 boost::condition_variable_any m_cond_var; 10 11 12 // 加锁 13 do 14 { 15 boost::mutex::scoped_lock... 阅读全文
posted @ 2017-01-17 11:03 独孤酷酷 阅读(540) 评论(0) 推荐(0) 编辑