Linux进程通信学习笔记

一.为什么需要进程通信 1)数据传输 一个进程需要把它的数据发送给另一个进程。 2)资源共享 多个进程之间共享同样的资源。 3)通知事件 一个进程向另外一个进程发送消息,通知它发生了某事件。 4)进程控制 控制运行、停止等。

二.IPC的由来 1)Unix进程通信 2)SystemV进程通信 3)POSIX(Portable Operating System Interface)进程通信

三.进程通信方式分类 1.管道通信(有名、无名管道) 含义:单向,先进先出的。 分类:无名(父子进程)、有名(任意进程)。

int pipe(int filedis[2]); filedis[0]读管道; filedis[1]写管道;

close() 关闭文件描述符。

2)//创建方式举例<以下所有示例linux测试ok>:

#include <unistd.h>#include <errno.h>#include <stdio.h>#include <stdlib.h>int main(){int pipe_fd[2];if(pipe(pipe_fd)<0){printf(“pipe create error\n”);return -1;}elseprintf(“pipe create success\n”);close(pipe_fd[0]);close(pipe_fd[1]);}

3)//父子进程之间通信举例 注意:必须fork()前调用pipe(),否则子进程无法继承文件描述符。

#include <unistd.h>#include <sys/types.h>#include <errno.h>#include <stdio.h>#include <stdlib.h>int main(){int pipe_fd[2];pid_t pid;char buf_r[100];char* p_wbuf;int r_num;memset(buf_r,0,sizeof(buf_r));/*创建管道*/if(pipe(pipe_fd)<0){printf(“pipe create error\n”);return -1;}/*创建子进程*/if((pid=fork())==0) //子进程 OR 父进程?{printf(“\n”);close(pipe_fd[1]);sleep(2); /*为什么要睡眠*/if((r_num=read(pipe_fd[0],buf_r,100))>0){printf( “%d numbers read from the pipe is %s\n”,r_num,buf_r);}close(pipe_fd[0]);exit(0);}else if(pid>0){close(pipe_fd[0]);if(write(pipe_fd[1],”Hello”,5)!=-1)printf(“parent write1 Hello!\n”);if(write(pipe_fd[1],” Pipe”,5)!=-1)printf(“parent write2 Pipe!\n”);close(pipe_fd[1]);sleep(3);waitpid(pid,NULL,0); /*等待子进程结束*/exit(0);}return 0;}

//3)有名管道 int mkfifo(const char* pathname, mode_t mode) //读管道数据

#include <sys/types.h>#include <sys/stat.h>#include <errno.h>#include <fcntl.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#define FIFO “/tmp/myfifo”main(int argc,char** argv){char buf_r[100];int fd;int nread;/* 创建管道 */if((mkfifo(FIFO,O_CREAT|O_EXCL)<0)&&(errno!=EEXIST))printf(“cannot create fifoserver\n”);printf(“Preparing for reading bytes…\n”);memset(buf_r,0,sizeof(buf_r));/* 打开管道 */fd=open(FIFO,O_RDONLY|O_NONBLOCK,0);if(fd==-1){perror(“open”);exit(1);}while(1){memset(buf_r,0,sizeof(buf_r));if((nread=read(fd,buf_r,100))==-1){if(errno==EAGAIN)printf(“no data yet\n”);}printf(“read %s from FIFO\n”,buf_r);sleep(1);}pause(); /*暂停,等待信号*/unlink(FIFO); //删除文件}

//写管道数据

#include <sys/types.h>#include <sys/stat.h>#include <errno.h>#include <fcntl.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#define FIFO_SERVER “/tmp/myfifo”main(int argc,char** argv){int fd;char w_buf[100];int nwrite;/*打开管道*/fd=open(FIFO_SERVER,O_WRONLY|O_NONBLOCK,0);if(argc==1){printf(“Please send something\n”);exit(-1);}strcpy(w_buf,argv[1]);/* 向管道写入数据 */if((nwrite=write(fd,w_buf,100))==-1){if(errno==EAGAIN)printf(“The FIFO has not been read yet.Please try later\n”);}elseprintf(“write %s to the FIFO\n”,w_buf);}爱上一个人的时候,总会有点害怕,怕得到他;怕失掉他。

Linux进程通信学习笔记

相关文章:

你感兴趣的文章:

标签云: