-------------------------------------资源来源于网络,仅供自学使用,如有侵权,联系我必删.
第一:
有名管道 fifo
• 无名管道只能用于有亲缘关于的进程通信,有名管道可以实现无亲缘关系的通信
• 有名管道fifo 给文件系统提供一个路径,这个路径和管道关联,只要知道这个管道路径,就可以进行文件访问,fifo 是指先进先出,也就是先写入的数据,先读出来
• 有名管道的读写速度非常快
使用 man 学习 mkfifo 函数
1)如下图所示,使用命令“man 3 mkfifo”
2)如下图所示,mkfifo 函数
3)接着注意一下相关的函数,如下图所示,可以发现下面的相关函数大多数都已经学习过了
4)接着介绍一下 mkfifo 的用法
int mkfifo(const char *pathname, mode_t mode)
– 参数*pathname:路径名,管道名称
– 参数mode:管道的权限
– 返回值:成功返回0,错误返回-1
第二:
mkfifo 函数例程
1)编写简单的 creatc.c 文件测试 mkfifo 函数。
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
void filecopy(FILE *,char *);
int main(void)
{
FILE *fp1;
long int i = 100000;
char buf[] = "I want to study Linux!\n";
char *file1 = "data.txt";
printf("begin!\n");
if((fp1 = fopen(file1,"a+")) == NULL ){
printf("can't open %s\n",file1);
}
while(i--)
filecopy(fp1,buf);
fclose(fp1);
printf("over!\n");
return 0;
}
void filecopy(FILE *ifp,char *buf)
{
char c;
int i,j;
j = 0;
i =