- 论坛徽章:
- 0
|
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
看这好像是进了线程创建失败里边了!!
按说即便是创建失败也应该会重新创建线程啊!
不知道什么原因!!!请各位高手赐教! |
|