无名管道mkfifo 创建fifo1

本文展示了一组无名管道(FIFO)在进程间通信的应用实例。通过两个程序实现:一个作为读取端,从名为fifo1的FIFO中读取数据并打印;另一个作为写入端,从标准输入读取数据并写入fifo1,直到接收到特定字符终止。此示例展示了无名管道在不同进程间进行数据交换的基本原理。
摘要由CSDN通过智能技术生成

以下是无名管道的例子,大家可以留言问问题。

#include <stdio.h>

#include <stdlib.h>

#include <unistd.h>

#include <string.h>

#include <sys/types.h>

#include <sys/stat.h>

#include <fcntl.h>

int main (void)

{

    int len =0;

    char buf[100];

    memset(buf, 0,sizeof(buf));//定义从fifo里面读的数据的缓冲

    int fd = open ("fifo1",O_RDONLY);//以只读方式打开

    while ((len = read(fd,buf,sizeof(buf))>0))//a如果read所读的fd所指文件提前管壁,那么返回负数;

    {                                           //这里为什么会等待writefifo写完,不会抢占fifo吗

        printf("%s\n",buf);

        memset(buf, 0,sizeof(buf));

    }

     printf("%d\n",len);

    close(fd);

    return 0;

}

/*                         ********                                ********                                         */

 

#include <stdio.h>

#include <stdlib.h>

#include <unistd.h>

#include <string.h>

#include <sys/types.h>

       #include <sys/stat.h>

       #include <fcntl.h>

 

int main (void)

{

    int len =0;

    char buf[100];

    memset(buf, 0,sizeof(buf));

    int fd = open ("fifo1",O_WRONLY);

    while (1)

    {

       // scanf("%s",buf);

        read(STDIN_FILENO,buf,sizeof(buf));

        if(buf[0]=='0')

        break;

        write(fd,buf,strlen(buf));

        memset(buf, 0,sizeof(buf));

      

    }

    close(fd);

    return 0;

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值