Chinaunix首页 | 论坛 | 博客
  • 博客访问: 191288
  • 博文数量: 15
  • 博客积分: 1630
  • 博客等级: 上尉
  • 技术积分: 177
  • 用 户 组: 普通用户
  • 注册时间: 2010-01-18 16:12
文章分类

全部博文(15)

文章存档

2014年(1)

2012年(8)

2010年(6)

我的朋友

分类: C/C++

2012-04-01 10:56:42

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

  1. #include   
  2. #include   
  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。

  1. #include   
  2. #include   
  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确实挺好用,当然得付出一定的代价。
阅读(10703) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~