摘要: 管道是一种只允许用在有亲属关系的进程间通信的方式,由函数pipe创建一个管道,read,write进行读写操作。 #include int pipe(int pipefd[2]);参数pipefd[2]数组返回打开的读写描述符,pipefd[0]为读,pipefd[1]... 阅读全文
posted @ 2016-01-01 15:04 thammer 阅读(434) 评论(0) 推荐(0)