linux进程通信之管道

1.介绍:

  1)同一主机:

   unix进程通信方式:无名管道,有名管道,信号

   system v方式:信号量,消息队列,共享内存

  2)网络通信:Socket,RPC

2.管道:

  无名管道(PIPE):使用一个进程的标准输出作为另一个进程的标准输入建立的一个单向管道,执行完成后消失。主要用于父进程与子进程之间,或者两个兄弟进程之间。采用的是单向

  1)创建无名管道:(#include(unistd.h))

  extern int pipe(int pipes[2]),pipes[0]完成读操作,pipes[1]完成写操作。

 #include <unistd.h>
#include <stdio.h>
int main(){
int pipes[];
if(pipe(pipes)<){
printf("pipe create failed.\n");
return-;
}
else{
printf("pipe create successfully.\n");
close(pipe_filed[]);
close(pipe_filed[]);
}
}

  父子进程通信:

 #include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/wait.h>
int main(){
char buf[];
int pipes[];
if(pipe(pipes)< ){
printf("Create pipe failed.\n");
return-;
}
memset(buf,,);
int pid;
pid= fork();
if(pid== ){
printf("In child process.\n");
close(pipes[]);
read(pipes[],buf, );
printf("%s.\n",buf);
close(pipes[]);
}
else if(pid > ){
printf("In parent process.\n");
close(pipes[]);
write(pipes[],"Hello\n ",);
close(pipes[]);
wait(NULL);
}
return ;
}

3.有名管道(FIFO):

  依赖具体文件系统,是一个存在的特殊文件,实现进程对文件系统下某文件的访问,有名管道和普通文件有一样的属性,如磁盘路径,文件权限等,但并不是存放在磁盘,而在内存中,只拥有磁盘接口。

  创建有名管道:

  extern int mkfifo(char *path,mode_t mode)

 

 #include<stdlib.h>
#include<stdio.h>
#include<sys/types.h>
#include<sys/stat.h>
int main()
{
int res = mkfifo("/home/code", );
if(res == )
{
printf("FIFO created\n");
}
exit(EXIT_SUCCESS);
}
上一篇:git如何使用 svn如何使用


下一篇:linux下的进程通信之管道与FIFO