进程间通信:管道

Posted qxgloyal

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了进程间通信:管道相关的知识,希望对你有一定的参考价值。

1.popen函数和pclose函数

  FILE *popen(const char* command,const char *open_mode);

  int pclose(FILE* stream_to_close);

  popen函数允许一个程序将另一个程序作为新进程启动,并可以传递数据给它或通过它接收数据。command是要运行的程序名和相应参数,open_mode必须是"r"或"w"。

  如,popen("uname -a","r")

2.pipe调用

  int pipe(int file_description[2]);

  该函数在数组中填上两个新的文件描述符后返回0,如果失败则返回-1,并设置errno来表明失败原因。

  写到file_description[1]的所有数据都可以从file_description[0]读回来。

以上是关于进程间通信:管道的主要内容,如果未能解决你的问题,请参考以下文章

Linux进程间通信

Linux进程间通信——管道

Linux进程间通信

Linux进程间通信

Linux进程间通信

Linux进程间通信