我是靠谱客的博主 高挑小松鼠,最近开发中收集的这篇文章主要介绍boost的scoped_lock,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

   这几天帮人调试程序,遇到boost的锁相关问题。

 

[cpp] view plaincopy

  1. #include <iostream>  
  2. #include <boost/thread/mutex.hpp>  
  3.   
  4. boost::mutex mut;  
  5.   
  6. void bar()  
  7. {  
  8.    boost::mutex::scoped_lock lock(mut);  
  9.    std::cout << "This is bar!" << std::endl;  
  10. }  
  11.   
  12. void foo()  
  13. {  
  14.     boost::mutex::scoped_lock lock(mut);  
  15.     std::cout << "This is foo!" << std::endl;  
  16.     bar();  
  17. }  

这里涉及到锁是否是re-entrant,即可以重入,也就是同一个线程可以进行多次持一把锁。

 

一般情况下,锁都不是re-entrant的,重入会导致未定义行为。要解决这个问题,可以采用boost::mutex::recursive_mutex。

[cpp] view plaincopy

  1. #include <iostream>  
  2. #include <boost/thread/recursive_mutex.hpp>  
  3.   
  4. boost::recursive_mutex mut;  
  5.   
  6. void bar()  
  7. {  
  8.    boost::recursive_mutex::scoped_lock lock(mut);  
  9.    std::cout << "This is bar!" << std::endl;  
  10. }  
  11.   
  12. void foo()  
  13. {  
  14.     boost::recursive_mutex::scoped_lock lock(mut);  
  15.     std::cout << "This is foo!" << std::endl;  
  16.     bar();  
  17. }  

题外话,因为mutex有lock方法,这里 取名lock对象看起来有点混淆。另外scoped_lock确实挺好用,当然得付出一定的代价。

最后

以上就是高挑小松鼠为你收集整理的boost的scoped_lock的全部内容,希望文章能够帮你解决boost的scoped_lock所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(33)

评论列表共有 0 条评论

立即
投稿
返回
顶部