gpt4 book ai didi

c - 为什么我在关闭管道后执行 execlp?

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

嗨,有人能解释一下为什么我应该在关闭管道后使用 execlp 吗?

这是一个例子:

if( cid == 0)
{//Only child cid can run this code

char msg[256];

//Redirect output into the pipe instead of the terminal
dup2(pipe1Fds[1],STDOUT_FILENO);

//Close pipes or the pipe reader will not get an EOF
close(pipe1Fds[0]);
close(pipe1Fds[1]);
close(pipe2Fds[0]);
close(pipe2Fds[1]);

//Execute cmd1
execlp(cmd1,cmd1,(char *)0);

exit(0);
}

最佳答案

execlp() 将加载不同的代码到这个进程中,然后运行新程序,因此您需要在加载目标代码之前关闭管道,因为目标代码不会访问管道。
您可以阅读本文以获取更多信息 link .由于您的代码将被 execlp() 加载的程序替换,因此您必须在调用 execlp() 之前关闭管道。

关于c - 为什么我在关闭管道后执行 execlp?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22074593/

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