gpt4 book ai didi

C 并发进程和管道

转载 作者:太空宇宙 更新时间:2023-11-04 08:16:52 25 4
gpt4 key购买 nike

我有以下代码:

for(i=0; i < argc; i++)
{
pipe(fd[2]);
pid=fork();

if (pid > 0)
{
close(fd[1]);
// read the string, and print it
}
else if (pid == 0)
{
close(fd[0]);
// write the file name to the main process
break;
}
}

// wait for all processes to finish

基本上,它按顺序输出每个文件名:

file1
file2
file3

但是如果我将 printf("%d\n", getpid()) 放在 for 循环之后,输出似乎是并发的。一些具有较高进程 ID 的进程首先被打印。

我的问题是,我在 for 循环中进行管道读/写的方式是顺序的还是并发的?

最佳答案

for() 循环之后打印从 getpid() 返回的值将为(许多)子 pid 和父 pid 打印。

无法保证首先调用 printf() 的进程将执行什么。

因此 pid 值可以(如您所见)可能会)以某种“随机”顺序打印。

关于C 并发进程和管道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35328367/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com