免费注册 查看新帖 |

Chinaunix

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

pthread_cond_wait [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-04-05 23:38 |只看该作者 |倒序浏览
第一:
#include
#include
#include
#include
#include
#include
int count ;
pthread_mutex_t   lock;
pthread_cond_t    cond;
void *thread1_handle(void *arg)
{
pthread_mutex_lock(&lock);
//count--;
while(count
#include
#include
#include
#include
#include
int count ;
pthread_mutex_t   lock;
pthread_cond_t    cond;
void *thread1_handle(void *arg)
{
pthread_mutex_lock(&lock);
//count--;
while(count
#include
#include
#include
#include
#include
int count ;
pthread_mutex_t   lock;
pthread_cond_t    cond;
void *thread1_handle(void *arg)
{
pthread_mutex_lock(&lock);
count--;
while(count
#include
#include
#include
#include
#include
#include
int count ;
pthread_mutex_t   lock;
pthread_cond_t    cond;
void *thread1_handle(void *arg)
{
pthread_mutex_lock(&lock);
count--;
while(count <=  0)
  pthread_cond_wait(&cond,&lock);
printf("in 1st the count value is :%d\n",count);
printf("%s\n",arg);
pthread_mutex_unlock(&lock);
if(pthread_detach(pthread_self()) == 0)
   printf("1st   thread  detached\n");
pthread_exit((void *)1);
}
void *thread2_handle(void *arg)
{
pthread_mutex_lock(&lock);
count += 2;
printf("in 2nd the count value is :%d\n",count);
printf("%s\n",arg);
pthread_cond_signal(&cond);
pthread_mutex_unlock(&lock);
pthread_exit((void *)2);
}
int main(int argc,char **argv)
{
pthread_t   tid1,tid2;
int         retval;
char        buffer1[]="1st  thread";
char        buffer2[]="2nd   thread";
void        *p1,*p2;
pthread_mutex_init(&lock,NULL);
pthread_cond_init(&cond,NULL);
retval = pthread_create(&tid2,NULL,(void *)thread2_handle,buffer2);
if(retval != 0)
{
printf("pthread_create  error:%s\n",strerror(errno));
exit(errno);
}
retval = pthread_create(&tid1,NULL,(void *)thread1_handle,buffer1);
if(retval != 0)
{
printf("pthread_create  error:%s\n",strerror(errno));
exit(errno);
}
retval = pthread_join(tid1,&p1);
if(retval != 0)
{
printf("pthread join  error: %s",strerror(errno));
exit(errno);
}
printf("pthread 1st  exit code:%d\n",(int)p1);
retval = pthread_join(tid2,&p2);
if(retval != 0)
{
printf("pthread join error:%s\n",strerror(errno));
exit(errno);
}
printf("pthread  2nd exit code :%d\n",(int)p2);
exit(0);
}
结果:
in 2nd the count value is :2
2nd   thread
in 1st the count value is :1
1st  thread
1st   thread  detached
pthread 1st  exit code:1
pthread  2nd exit code :2
果然是这种竞争造成的后果;
可以
while()
  pthread_cond_wait()
count--;
值得注意,线程是公平执行的,当然还得看具体的调度机制
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u1/35079/showart_271843.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP