发布时间:2014-04-29 21:24:54
Linux系统本身为进程间通信提供了很多的方式,比如说管道、共享内存、socket通信等。管道的使用十分简单,在创建了匿名管道之后,我们只需要从一个管道发送数据,再从另外一个管道接受数据即可。[cpp] view plaincopy#include <stdio.h> #include <unistd.h> #include <stdlib.h> #include <string..........【阅读全文】
阅读(652) | 评论(0) | 转发(0)