摘要: //第一个程序先发后收#include <stdio.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <stdlib.h> #include <string.h> int main(int arg 阅读全文
posted @ 2014-09-05 19:09 白菜hxj 阅读(501) 评论(0) 推荐(0) 编辑
摘要: 由于匿名管道使用的是文件描述符,所以我们只能用read和write对其进行读写。因为标准读写函数都是基于文件指针的。 当read成功时,返回值为读到的字符数。当遇见文件结尾时,返回0(也就是什么都读不出来了)。出错,返回-1。—> 参考 man 2 read 当write成功时,返回值为写入的字符数 阅读全文
posted @ 2014-09-05 17:12 白菜hxj 阅读(362) 评论(0) 推荐(0) 编辑