Linux管道编程
作者:网络转载 发布时间:[ 2014/5/26 13:18:25 ] 推荐标签:Linux 管道编程 操作系统
实例2命名管道。通常对命名管道的读在写之前。
读管道:
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define FIFO "/tmp/myfifo" //管道位置
main(int argc,char** argv)
{
char buf_r[100];
int fd;
int nread;
if((mkfifo(FIFO,O_CREAT|O_EXCL)<0)&&(errno!=EEXIST)) //创建并执行
printf("cannot create fifoserver
");
printf("Preparing for reading bytes...
");
memset(buf_r,0,sizeof(buf_r));
fd=open(FIFO,O_RDONLY|O_NONBLOCK,0); //readonly 不阻塞
if(fd==-1)
{
perror("open");
exit(1);
}
while(1){
memset(buf_r,0,sizeof(buf_r));
if((nread=read(fd,buf_r,100))==-1){ //读取管道
if(errno==EAGAIN)
printf("no data yet
");
}
printf("read %s from FIFO
",buf_r);
sleep(1);
}
pause();
unlink(FIFO);
}
|
写管道:
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define FIFO_SERVER "/tmp/myfifo"
int main(int argc,char** argv){
<span style="white-space:pre"> </span>int fd;
<span style="white-space:pre"> </span>char w_buf[100];
<span style="white-space:pre"> </span>int nwrite;
<span style="white-space:pre"> </span>
<span style="white-space:pre"> </span>fd=open(FIFO_SERVER,O_WRONLY|O_NONBLOCK,0); //writeonly,管道已在read中创建,可以直接打开。
<span style="white-space:pre"> </span>if(fd==-1)
<span style="white-space:pre"> </span>if(errno==ENXIO)
<span style="white-space:pre"> </span>printf("open error; no reading process
");
<span style="white-space:pre"> </span>if(argc==1)
<span style="white-space:pre"> </span>printf("Please send something
");
<span style="white-space:pre"> </span>strcpy(w_buf,argv[1]);
<span style="white-space:pre"> </span>if((nwrite=write(fd,w_buf,100))==-1){ //write
<span style="white-space:pre"> </span>if(errno==EAGAIN)
<span style="white-space:pre"> </span>printf("The FIFO has not been read yet.Please try later
");
<span style="white-space:pre"> </span>}
<span style="white-space:pre"> </span>else
<span style="white-space:pre"> </span>printf("write %s to the FIFO
",w_buf);
}
|
本文内容不用于商业目的,如涉及知识产权问题,请权利人联系SPASVO小编(021-61079698-8054),我们将立即处理,马上删除。
相关推荐
Linux下开源的DDR压力测试工具曝Linux恶意软件:让树莓派设备挖掘数字货币linux系统中不同颜色的文件夹及根目录介绍软件测试工程师必知必会Linux命令Linux下DNS服务器配置如何成为不可替代的Linux运维工程师?详解Linux进程(作业)的查看和杀死Linux 日志定时轮询流程详解比特币勒索病毒不只Windows系统有,Linux版的来了Linux日志定时轮询流程详解Linux iommu和vfio概念空间解构Linux系统如何低于TCP洪水攻击Linux无损调整分区大小Linux下防火墙配置实例Linux使用Jexus托管Asp.Net Core应用程序Linux中引号的那些事
更新发布
功能测试和接口测试的区别
2023/3/23 14:23:39如何写好测试用例文档
2023/3/22 16:17:39常用的选择回归测试的方式有哪些?
2022/6/14 16:14:27测试流程中需要重点把关几个过程?
2021/10/18 15:37:44性能测试的七种方法
2021/9/17 15:19:29全链路压测优化思路
2021/9/14 15:42:25性能测试流程浅谈
2021/5/28 17:25:47常见的APP性能测试指标
2021/5/8 17:01:11热门文章
常见的移动App Bug??崩溃的测试用例设计如何用Jmeter做压力测试QC使用说明APP压力测试入门教程移动app测试中的主要问题jenkins+testng+ant+webdriver持续集成测试使用JMeter进行HTTP负载测试Selenium 2.0 WebDriver 使用指南