Linux线程创建顺序与执行顺序

#include<stdio.h>#include<pthread.h>void*myThread1(void){printf("Thisisthe1stpthread,... #include <stdio.h>
#include <pthread.h>

void *myThread1(void)
{

printf("This is the 1st pthread,created by zieckey.\n");

}

void *myThread2(void)
{

printf("This is the 2st pthread,created by zieckey.\n");

}

int main()
{
int i=0, ret=0;
pthread_t id1,id2;

/*创建线程1*/
ret = pthread_create(&id1, NULL, (void*)myThread1, NULL);
if (ret)
{
printf("Create pthread error!\n");
return 1;
}

/*创建线程2*/
ret = pthread_create(&id2, NULL, (void*)myThread2, NULL);
if (ret)
{
printf("Create pthread error!\n");
return 1;
}
pthread_join(id1, NULL);
pthread_join(id2, NULL);

return 0;
}
运行结果是
This is the 2st pthread,created by zieckey.
This is the 1st pthread,created by zieckey.
为什么是2先再1,还有就是创建多个线程,还是1最后显示,其他都是按照顺序显示的,例如
This is the 2st pthread,created by zieckey.
This is the 3st pthread,created by zieckey.
This is the 4st pthread,created by zieckey.
This is the 1st pthread,created by zieckey.
为什么??线程创建与执行关系是如何的?大神们快过来啊(T T)、!!
展开
 我来答
星语TY931
2014-06-13 · 超过58用户采纳过TA的回答
知道答主
回答量:166
采纳率:0%
帮助的人:131万
展开全部
根据版本而定
老版本可能是先要执行子进程
最新的版本都是取决于进程调度算法

源代码:sched.c
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式