如果我有以下代码(来自 Silberschatz,操作系统),为什么 P 行中的 value = 0?我以为父进程等到子进程完成,子进程设置 value = 5。
有人可以向我解释一下吗?
int value = 0;
void *runner(void *param);
int main(int argc, char *argv[])
{
int pid;
pthread_t tid;
pthread_attr_t attr;
pid = fork();
if (pid == 0) {
pthread_attr_init(&attr);
pthread_create(&tid,&attr,runner,NULL);
pthread_join(tid,NULL);
printf("CHILD: value= %d \n",value); /* LINE C */
}
else if (pid > 0) {
wait(NULL);
printf("PARENT: value= %d \n",value); /* LINE P */
}
}
void *runner(void *param) {
value = 5;
pthread_exit (0);
}