免费注册 查看新帖 |

Chinaunix

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

linux 线程疑问 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-02-04 15:39 |只看该作者 |倒序浏览
void test001()
{
printf("This is thread 2!!!!!\n");
usleep(1000);
}
void test002()
{
printf("\nThis is thread 1!!!!!\n");
usleep(1000);
}
int main(int argc, char **argv)
{
    int i;
    int result0,result1;
    pthread_t thread1, thread2;
   while(1)
        {
            result0=pthread_create(&thread1, NULL, (void *)test002,NULL);
            if(result0)
                {
                    perror("pthread_create: task1.\n");
                    pthread_exit(1);
                }
            //usleep(1000*10);
            result1=pthread_create(&thread2, NULL, (void *)test001,NULL);
            if(result1)
                {
                    perror("pthread_create: task2.\n");
                    pthread_exit(1);
                }
            //usleep(1000*300);
            pthread_join(test002, 0);
            pthread_join(test001, 0);
      }
return 0;
}

这样一段程序在开发系统内跑不到一分钟就停止了,最后提示是pthread_create: task1.
: Success
看这好像是进了线程创建失败里边了!!
按说即便是创建失败也应该会重新创建线程啊!
不知道什么原因!!!请各位高手赐教!

论坛徽章:
0
2 [报告]
发表于 2010-02-07 13:09 |只看该作者
没人看啊!!
这个问题已经找到了,是我没太注意些错了
pthread_join(test002, 0);
  pthread_join(test001, 0);
应该是 pthread_join(thread2, 0);
            pthread_join(thread2, 0);
现在出现了新的问题,我的两个线程里一个用时长一个用时短,我在测试时发现程序基本被用时长的那个
抢占了,用时断的那个基本没有运行!!
望各位高人解答!!谢谢

论坛徽章:
0
3 [报告]
发表于 2010-08-27 17:06 |只看该作者
回复 2# js001sdx


    大哥,你太粗心了,应该是:
-----------------------------------
pthread_join(thread1, 0);
pthread_join(thread2, 0);
-----------------------------------

论坛徽章:
0
4 [报告]
发表于 2011-01-09 20:23 |只看该作者
while(1)放错地方了吧,应该是放到线程中去
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP