繁体   English   中英

在execl调用的子进程中写入管道

[英]Writing to a pipe in a child process called by execl

我不明白如何在child process sp.c中使用从mp.c创建的pipe 我(认为我)似乎在使用execl进行外部进程时无法访问正确的file descriptor

   /***************mp.c*****************/ 

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

int main(int argc, char *argv[]) {
char  *procpath = "/mypath/sp";
char  *procname = "sp"; 
pid_t pid;
int fd[2];
int ret;
char buf[20];
memset(&buf[0], 0, sizeof(buf));
ret = pipe(fd);
if(ret == -1){
perror("pipe");
exit(1);
}
pid = fork();
printf("%d\n",pid); 
    if (pid == 0){
//dup2(mypipefd[1],STDOUT_FILENO);
    ret = execl(procpath, procpath, "1","2",NULL);
    perror("execl failed to run slave program");
    exit(1);
    } 
    else if (pid > 0){
    /* Parent process*/
    printf("execl ret val = %d",ret);
    printf("Parent process \n");
    close(fd[1]);
    read(fd[0],buf,15);
//  close(fd[1]);
    close(fd[0]);
    printf("buf: %s TEST\n", buf);
    printf("buf: %s TEST\n", buf);
    }
    else{
    printf("call to fork failed, no child\n");
    exit(-1);
    }
exit(0); 
}

和创建的过程...

/***************sp.c*****************/

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

int main(int argc, char *argv[]){
int ret;
//printf("Child process \n");
int fd[2];
pipe(fd);
//dup2(fd[1],1);
//int out;
/*ret = dup2(fd[1],1);
    if (ret = -1){
    printf("%s\n", strerror(errno));
    };*/
//sprintf()
//printf("%d\n", ret);
//mypipefd = argv[1];
printf("Child process \n");
//close(fd[0]);
write(fd[1], "Hello there!",12);
close(fd[1]);
exit(0);
}

问题是您在每个应用程序中创建一个不同的管道。 为了通过管道正确通信,两个程序应共享同一管道(管道功能创建的文件描述符之一)。

基本上要解决此问题,您必须在一个应用程序中创建管道并将文件描述符发送到另一个程序,而无需再次调用系统调用管道。 可以使用套接字unix域将文件描述符发送到另一个进程。 看这篇文章我可以在Linux上与另一个进程共享文件描述符,还是在该进程本地?

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM