我正在写一个小程序,这就是应该做的。
在主进程中,我必须创建一个新进程,并且应该执行另一个只执行printf(“text”)的程序。我想在stdout上重定向管道写入结束,主进程应从其管道读取读取并在stdout上打印它。我编写了代码但是当父进程尝试从管道中读取时,我一次又一次出现分段错误。
#include <sys/types.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
void write_to(FILE *f){
char buf[50];
fprintf(f,"KOMA");
}
int main(){
int cpPipe[2];
int child1_fd;
int child2_fd;
if(pipe(cpPipe) == -1){
fprintf(stderr,"ERROR PIPE creation");
exit(1);
}else{printf("pipe couldn't be created\n");}
child1_fd = fork();
if(child1_fd < 0){
fprintf(stderr, " CHILD creation error");
exit(1);
}
if(child1_fd == 0){
printf("*CHILD*\n");
char program[] = "./Damn";
int dupK;
printf("stdout %d \n", STDOUT_FILENO);
printf("stdin %d \n", STDIN_FILENO);
printf("pipe1 %d \n", cpPipe[1]);
printf("pipe0 %d \n", cpPipe[0]);
// closing pipe write
close(cpPipe[0]);
close(1);
dup(cpPipe[1]);
printf("and");
close(cpPipe[1]);
exit(0);
}else{
printf("*Parent*\n");
char *p;
char *buf;
FILE *pipe_read;
close(cpPipe[1]);
pipe_read = fdopen(cpPipe[0],"r");
while((buf = fgets(p,30,pipe_read)) != NULL){
printf("buf %s \n", buf);
}
wait();
printf("Child is done\n");
fclose(pipe_read);
exit(0);
}
}
当我将stdout重定向到它时,是否必须关闭管道写入结束?
答案 0 :(得分:2)
嗯,...你的分段错误的原因在于:
buf = fgets(p,30,pipe_read);
p是一个基本上没有重要性的指针。它的内容是执行时堆栈中的任何内容,您永远不会初始化它。你需要它指向你可以使用的一块内存!分配malloc()
来电的回复,或将其声明为char p[LEN]
。
编辑:您还在重新打开已打开的文件描述符。查看fgets
和pipe
上的文档,我认为您对它们的工作原理感到困惑。
现在,说,你的功能流程有点令人困惑。尝试澄清它!请记住,代码旨在表达意图,功能的想法。尝试使用铅笔和纸来整理程序,然后将其写为实际代码:)。
干杯!
答案 1 :(得分:2)
当我将stdout重定向到它时,是否必须关闭管道写入结束?
通常,是的,因为虽然有一个进程打开管道的写入结束,但是读取管道的进程将不会获得EOF并且将挂起。当然,关闭你不会使用的文件描述符也很整洁。
您的代码也在成功路径中说“无法创建管道”。