您的位置:首页 > 运维架构 > Linux

linux 进程间通信fifo_write

2015-12-11 00:00 190 查看
hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计/进程通讯$ cat fifo_write.c
#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 "./myfifo"

main(int argc,char** argv)
{
int fd;
char w_buf[100];
int nwrite;
fd=open(FIFO_SERVER,O_WRONLY|O_NONBLOCK,0);

if(argc==1)
{
printf("Please send something\n");
exit(-1);
}

strcpy(w_buf,argv[1]);
if((nwrite=write(fd,w_buf,100))==-1)
{
if(errno==EAGAIN)
printf("The FIFO has not been read yet.Please try later\n");
}
else
printf("write %s to the FIFO\n",w_buf);
}

hyh@hyh-OptiPlex-9020:~/git/hyh_home/1512_home/应用程序设计/进程通讯$
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: