免费注册 查看新帖 |

Chinaunix

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

请教个程序 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-07-09 22:11 |只看该作者 |倒序浏览
1 #include<pthread.h>
  2 #include<stdio.h>
  3 #include<stdlib.h>
  4 #include <unistd.h>
  5 #include <time.h>
  6
  7 static int flag = 1;
  8 pthread_mutex_t mutex_t = PTHREAD_MUTEX_INITIALIZER;
  9 void *create_p(void *arg){
10     int status = pthread_mutex_lock(&mutex_t);
11     printf("this pthread is number %d\n",flag);
12         flag++;
13     if(status !=0){
14         exit(1);
15     }
16     pthread_mutex_unlock(&mutex_t);
17 }   
18
19 int main(){
20     pthread_t tid[19];
21     int i = 0;
22     int status;
23     for(i = 0; i<30;i++){
24         printf("%d\n",i);
25         status = pthread_create(&tid,NULL,create_p,NULL);
26         if(status != 0){
27             printf("create_thread error\n");
28             exit(1);
29         }   
30     }   
31     return 0;
32     
33 }   

为什么在tid[20]的时候,还向下运行了一个循环的?
~

论坛徽章:
0
2 [报告]
发表于 2009-07-09 23:17 |只看该作者

回复 #1 singerinsky 的帖子

哪有tid[20]?

论坛徽章:
0
3 [报告]
发表于 2009-07-10 05:55 |只看该作者
stack corruption

论坛徽章:
0
4 [报告]
发表于 2009-07-10 05:56 |只看该作者

回复 #2 aaaaa5aa 的帖子

就是因为没有,所以才导致了奇怪的结果。

论坛徽章:
80
20周年集字徽章-庆
日期:2020-10-28 14:09:1215-16赛季CBA联赛之北京
日期:2020-10-28 13:32:5315-16赛季CBA联赛之北控
日期:2020-10-28 13:32:4815-16赛季CBA联赛之天津
日期:2020-10-28 13:13:35黑曼巴
日期:2020-10-28 12:29:1520周年集字徽章-周	
日期:2020-10-31 15:10:0720周年集字徽章-20	
日期:2020-10-31 15:10:07ChinaUnix元老
日期:2015-09-29 11:56:3020周年集字徽章-年
日期:2020-10-28 14:14:56
5 [报告]
发表于 2009-07-10 08:33 |只看该作者
数组查询溢出,出现未知的情况

论坛徽章:
0
6 [报告]
发表于 2009-07-10 08:34 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
7 [报告]
发表于 2009-07-10 08:39 |只看该作者
做了30个。程序逻辑里压根就没管数组的上下限。
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP