gpt4 book ai didi

c - 多个 execlp 不工作

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

我需要一些帮助。运行程序后,我需要执行所有三个 execlp(),但实际情况是只执行了 case 0。我将 pid 更改为 1,case1 被执行,依此类推。尝试将其放入 for 循环但不起作用。我将 break 更改为 continue 但仍然相同 - 仅执行一个进程。有什么建议吗?

主要(){

pid_t pid;
pid= fork();
int i;

if(pid==0){

for (i=0; i<3; i++){
switch (i){
case 0:
execlp("/bin/cat", "cat", "wctrial.txt", NULL);
break;

case 1:
execlp("/bin/mkdir", "mkdir", "mydirectory", NULL);
break;

case 2:
execlp("/bin/wc", "wctrial.txt", NULL);
break;
}
}


}else{
wait(NULL);
printf("Child process completed!");
exit(0);
}

最佳答案

根据 man execlp :

The exec() family of functions replaces the current process image with a new process image.

(重点是我的)

因此,一旦您成功调用execlp,该进程就不会重新执行旧代码。

case 0:
execlp("/bin/cat", "cat", "wctrial.txt", NULL);
/* shouldn't go here */
break;

如果要执行这三个程序,可以创建三个进程。例如(循环展开):

pid_t son;

son = fork();

if (son == -1) /* report */
else if (son == 0) execlp("/bin/cat", "cat", "wctrial.txt", NULL);
else wait(NULL);

son = fork();

if (son == -1) /* report */
else if (son == 0) execlp("/bin/mkdir", "mkdir", "mydirectory", NULL);
else wait(NULL);

/* ... */

关于c - 多个 execlp 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15188115/

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