免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 8247 | 回复: 3
打印 上一主题 下一主题

pthread_cond_signal如何才能保证不被丢失 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-05-06 18:46 |只看该作者 |倒序浏览
  1. #include <unistd.h>
  2. #include <pthread.h>
  3. #include <ostream>
  4. #include <iostream>

  5. using namespace std ;

  6. void* routine1(void* p) ;
  7. void* routine2(void* p) ;
  8. void* routine3(void* p) ;

  9. int flag = 1 ;

  10. pthread_mutex_t mux ;
  11. //static pthread_mutexattr_t muxattr = PTHREAD_MUTEX_TIMED_NP ;
  12. static pthread_cond_t cond1 = PTHREAD_COND_INITIALIZER ;
  13. static pthread_cond_t cond2 = PTHREAD_COND_INITIALIZER ;
  14. static pthread_cond_t cond3 = PTHREAD_COND_INITIALIZER ;

  15. int main(int argc, char* argv[])
  16. {
  17.     pthread_t id1, id2, id3 ;
  18.     pthread_attr_t attr1, attr2, attr3 ;

  19.     pthread_cond_init(&cond1, NULL) ;
  20.     pthread_cond_init(&cond2, NULL) ;
  21.     pthread_cond_init(&cond3, NULL) ;

  22.     pthread_mutex_init(&mux, 0) ;

  23.     pthread_attr_init(&attr1) ;
  24.     pthread_attr_init(&attr2) ;
  25.     pthread_attr_init(&attr3) ;

  26.     pthread_attr_setdetachstate(&attr1, PTHREAD_CREATE_JOINABLE) ;
  27.     pthread_attr_setdetachstate(&attr2, PTHREAD_CREATE_JOINABLE) ;
  28.     pthread_attr_setdetachstate(&attr3, PTHREAD_CREATE_JOINABLE) ;

  29.     pthread_attr_setstacksize(&attr1, 1024*100) ;
  30.     pthread_attr_setstacksize(&attr2, 1024*100) ;
  31.     pthread_attr_setstacksize(&attr3, 1024*100) ;

  32.     pthread_create(&id1, &attr1, routine1, (void*)NULL) ;
  33.     pthread_create(&id2, &attr2, routine2, (void*)NULL) ;
  34.     pthread_create(&id3, &attr3, routine3, (void*)NULL) ;

  35.     sleep(1) ;
  36.     pthread_cond_signal(&cond1) ;

  37.     pthread_join(id1, NULL) ;
  38.     pthread_join(id2, NULL) ;
  39.     pthread_join(id3, NULL) ;

  40.     cout << "END\n" ;

  41.     return 0 ;
  42. }

  43. void* routine1(void* p)
  44. {
  45.     for(int i=0; i<10; i++)
  46.     {
  47.         pthread_mutex_lock(&mux) ;
  48.         //cout<< "A lock" << endl ;
  49.         pthread_cond_wait(&cond1, &mux) ;
  50.         cout << "A " << i << endl ;
  51.         pthread_cond_signal(&cond2) ;
  52.         pthread_mutex_unlock(&mux) ;
  53.         //cout << "A unlock" << endl ;
  54.     }
  55.     cout << "thread1 is about to exit\n" ;
  56. }

  57. void* routine2(void* p)
  58. {
  59.     for(int i=0; i<10; i++)
  60.     {
  61.         pthread_mutex_lock(&mux) ;
  62.         //cout<< "B lock" << endl ;
  63.         pthread_cond_wait(&cond2, &mux) ;
  64.         cout << "B " << i << endl ;
  65.         pthread_cond_signal(&cond3) ;
  66.         pthread_mutex_unlock(&mux) ;
  67.         //cout << "B unlock" << endl ;
  68.     }
  69.     cout << "thread2 is about to exit\n" ;
  70. }

  71. void* routine3(void* p)
  72. {
  73.     for(int i=0; i<10; i++)
  74.     {
  75.         pthread_mutex_lock(&mux) ;
  76.         //cout<< "C lock" << endl ;
  77.         pthread_cond_wait(&cond3, &mux) ;
  78.         cout << "C " << i << endl ;
  79.         pthread_cond_signal(&cond1) ;
  80.         pthread_mutex_unlock(&mux) ;
  81.         //cout << "C unlock" << endl ;
  82.     }
  83.     cout << "thread3 is about to exit\n" ;
  84. }
复制代码
3个线程A,B,C分别按照顺序打印0,1,2,3,4,5,6,7,8,9.

如下代码所示,但是由于线程的执行先后顺序是无序的,所以pthread_cond_signal有可能在一个线程未pthread_cond_wait之前就发出了。这种情况一般如何解决?

论坛徽章:
0
2 [报告]
发表于 2012-05-07 09:57 |只看该作者
pthread_mutex_lock(&mux);
while (条件)
    pthread_cond_wait(&cond, &mux);
pthread_mutex_unlock(&mux);

论坛徽章:
0
3 [报告]
发表于 2012-05-07 10:47 |只看该作者
pthread_cond_signal是边沿触发的,你的需求是要像Windows的SetEvent一样水平触发,需要一个额外的变量来记录这个信号。

论坛徽章:
0
4 [报告]
发表于 2012-05-07 12:33 |只看该作者
在唤醒对方时修改条件
在进入睡眠前和被唤醒后判断条件

唤醒只是唤醒阻塞在条件变量所对应的线程链表上的线程,如果没有线程在该链表上阻塞等待,唤醒就不会起作用。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP