2540|6

73

帖子

0

TA的资源

一粒金砂(初级)

楼主
 

多线程问题 [复制链接]

由于电脑上没有安装linux,请问以下程序的运行结果是什么?谢谢
#include
#include
#include
#include
#include

pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
int lock_var;
time_t end_time;
int sum;

void pthread1(void *arg);
void pthread2(void *arg);
void pthread3(void *arg);

int main(int argc, char *argv[])
{
pthread_t id1,id2,id3;
pthread_t mon_th_id;
int ret;
sum=10;

end_time = time(NULL)+10;
pthread_mutex_init(&mutex,NULL);
ret=pthread_create(&id1,NULL,(void *)pthread1, NULL);
if(ret!=0)
perror("pthread cread1");

ret=pthread_create(&id2,NULL,(void *)pthread2, NULL);
if(ret!=0)
perror("pthread cread2");

ret=pthread_create(&id3,NULL,(void *)pthread3, NULL);
if(ret!=0)
perror("pthread cread3");

pthread_join(id1,NULL);
pthread_join(id2,NULL);
pthread_join(id3,NULL);
exit(0);
}

void pthread1(void *arg)
{
int i;
while(time(NULL) < end_time)
{
if(pthread_mutex_lock(&mutex)!=0) //lock
{
perror("pthread_mutex_lock");
}
else
printf("pthread1:pthread1 lock the variable\n");
for(i=0;i<2;i++)
{
sleep(2);
lock_var++;
}
if(pthread_mutex_unlock(&mutex)!=0) //unlock
{
perror("pthread_mutex_unlock");
}
else
printf("pthread1:pthread1 unlock the variable\n");
sleep(1);
}
}

void pthread2(void *arg)
{
int nolock=0;
int ret;
while(time(NULL) < end_time)
{
ret=pthread_mutex_trylock(&mutex);//try lock
if(ret==EBUSY)
printf("pthread2:the variable is locked by pthread1\n");
else{
if(ret!=0)
{
perror("pthread_mutex_trylock");
exit(1);
}
else
printf("pthread2:pthread2 got lock.The variable is %d\n",lock_var);
if(pthread_mutex_unlock(&mutex)!=0)//unlock
{
perror("pthread_mutex_unlock");
}
else
printf("pthread2:pthread2 unlock the variable\n");
}
sleep(1);
}
}



void pthread3(void *arg)
{/*
int nolock=0;
int ret;
while(time(NULL) < end_time)
{
ret=pthread_mutex_trylock(&mutex);
if(ret==EBUSY)
printf("pthread3:the variable is locked by pthread1 or 2\n");
else
{
if(ret!=0)
{
perror("pthread_mutex_trylock");
exit(1);
}
else
printf("pthread3:pthread3 got lock.The variable is %d\n",lock_var);
if(pthread_mutex_unlock(&mutex)!=0)
{
perror("pthread_mutex_unlock");
}
else
printf("pthread3:pthread2 unlock the variable\n");
}
sleep(3);
}*/
}

最新回复

友情up  详情 回复 发表于 2009-2-18 13:23
点赞 关注

回复
举报

78

帖子

0

TA的资源

一粒金砂(初级)

沙发
 
友情up
 
 

回复

68

帖子

0

TA的资源

一粒金砂(初级)

板凳
 
友情up
 
 
 

回复

55

帖子

0

TA的资源

一粒金砂(初级)

4
 
你的电脑会报错。
 
 
 

回复

74

帖子

0

TA的资源

一粒金砂(初级)

5
 
/*==========================================================================*/
[user@localhost ~]$ gcc 1.c -o 1
/tmp/ccsWOzKr.o: In function `main':
1.c:(.text+0x63): undefined reference to `pthread_create'
1.c:(.text+0x9c): undefined reference to `pthread_create'
1.c:(.text+0xd5): undefined reference to `pthread_create'
1.c:(.text+0xfd): undefined reference to `pthread_join'
1.c:(.text+0x110): undefined reference to `pthread_join'
1.c:(.text+0x123): undefined reference to `pthread_join'
/tmp/ccsWOzKr.o: In function `pthread2':
1.c:(.text+0x201): undefined reference to `pthread_mutex_trylock'
collect2: ld 返回 1
[user@localhost ~]$
/*==========================================================================*/
 
 
 

回复

55

帖子

0

TA的资源

一粒金砂(初级)

6
 
报错~~~~
 
 
 

回复

75

帖子

0

TA的资源

一粒金砂(初级)

7
 
友情up
 
 
 

回复
您需要登录后才可以回帖 登录 | 注册

随便看看
查找数据手册?

EEWorld Datasheet 技术支持

相关文章 更多>>
关闭
站长推荐上一条 1/6 下一条

 
EEWorld订阅号

 
EEWorld服务号

 
汽车开发圈

About Us 关于我们 客户服务 联系方式 器件索引 网站地图 最新更新 手机版

站点相关: 国产芯 安防电子 汽车电子 手机便携 工业控制 家用电子 医疗电子 测试测量 网络通信 物联网

北京市海淀区中关村大街18号B座15层1530室 电话:(010)82350740 邮编:100190

电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 电信业务审批[2006]字第258号函 京公网安备 11010802033920号 Copyright © 2005-2025 EEWORLD.com.cn, Inc. All rights reserved
快速回复 返回顶部 返回列表