gpt4 book ai didi

c - 使用 fdopen 时文件描述符错误?

转载 作者:太空宇宙 更新时间:2023-11-04 02:27:01 24 4
gpt4 key购买 nike

我有以下 C 代码。child 用于运行 test3,其代码如下。父级用于将数据传递给子级,子级将重定向到 test3 的 STDIN。

#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <errno.h>

int main(int argc, char *argv[]) {
int fd[2];
char buf[] = "HELLO WORLD!";
if(pipe(fd)){
perror("pipe");
return -1;
}
switch(fork()){
case -1:
perror("fork");
return -1;
case 0:
// child
close(fd[1]);
dup2(fd[0], STDIN_FILENO);
close(fd[0]);
system("./test3");
default:
// parent
close(fd[0]);
FILE* stream = fdopen(fd[1],"w");
if(stream == NULL){ // error checking
printf("Error creating a file\n");
printf("%s\n", strerror(errno));
return -1;
}
// write data to pipe
fwrite(buf, 1,6,stream);
close(fd[1]);
fclose(stream);
}
printf("END~\n");
return 0;
}

这是 test3 代码:

#include <stdio.h>
int main(){
char n[1000];
scanf("%s",n);
printf("%s\n",n);
}

我的问题是父代码中的 fdopen 返回 NULL 和 Bad file descriptor error 我无法找出原因。谁能帮忙?

提前致谢。

最佳答案

错误实际上来自 child ,而不是 parent 。在 child 通过系统调用运行 test3 之后,它会陷入 default: 的情况,尝试 fdopen 它已经关闭的文件描述符.在系统调用后添加 break; 错误将消失。

第二个问题是父级中的 close(fd[1]),它会在刷新您使用 fwrite< 写入的数据之前从 FILE 指针下关闭文件描述符。在 close 之前放置一个 fflush(stream); 调用,或者干脆去掉 close,作为 fclose 将关闭文件描述符。

关于c - 使用 fdopen 时文件描述符错误?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49595384/

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