当前位置:  技术问答>linux和unix

FIFO一段小程序,无法读出FIFO。

    来源: 互联网  发布时间:2017-01-22

    本文导语:  #include  #include  #include  #include  #include  #define FIFO "/root/fan/fifo_op/fifo" #define MODE O_RDWR|O_NONBLOCK  //可读可写,非阻塞 int main() { int fd,r_num,w_num; char ptr[100]; memset(ptr,0,sizeof(ptr)); if((fd=mkfifo(FIFO,MODE))==-1){ printf("creat fifo ...


#include 
#include 
#include 
#include 
#include 

#define FIFO "/root/fan/fifo_op/fifo"
#define MODE O_RDWR|O_NONBLOCK  //可读可写,非阻塞

int main()
{
int fd,r_num,w_num;
char ptr[100];
memset(ptr,0,sizeof(ptr));
if((fd=mkfifo(FIFO,MODE))==-1){
printf("creat fifo failed!");
}
if(write(fd,"hello world",sizeof("hello world"))!=-1){
printf("write to fifo :hello worldn");
}
close(fd);
fd = open(FIFO,MODE,0755);
printf("%dn",fd);
printf("%dn",(read(fd,ptr,100)));
if((r_num=read(fd,ptr,100))!=-1){
printf("%dn",fd);
printf("%d bytes has been read ..n",r_num);
printf("%sn",ptr);
}
close(fd);
}


为什么会读不出来呢???read(fd,ptr,100)总是返回-1

|
NAME
       mkfifo - make a FIFO special file (a named pipe)

SYNOPSIS
       #include 
       #include 

       int mkfifo(const char *pathname, mode_t mode);

DESCRIPTION
       mkfifo() makes a FIFO special file with name pathname.  mode specifies the FIFO's permissions.  It is modified by the process's umask in the usual
       way: the permissions of the created file are (mode & ~umask).

       A FIFO special file is similar to a pipe, except that it is created in a different way.  Instead of being an anonymous communications  channel,  a
       FIFO special file is entered into the file system by calling mkfifo().

       Once  you have created a FIFO special file in this way, any process can open it for reading or writing, in the same way as an ordinary file.  How‐
       ever, it has to be open at both ends simultaneously before you can proceed to do any input or output operations on it.  Opening a FIFO for reading
       normally  blocks  until  some other process opens the same FIFO for writing, and vice versa.  See fifo(7) for nonblocking handling of FIFO special
       files.



              #include 
              #include 


              int status;
              ...
              status = mkfifo("/home/cnd/mod_done", S_IWUSR | S_IRUSR |
                  S_IRGRP | S_IROTH);


你创建都不对,读毛。

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 关于fifo的问题 iis7站长之家
  • fifo
  • fifo数据更换的问题
  • fifo open的问题
  • FIFO属于什么原语?
  • 关于FIFO——命名管道的问题
  • 重分求解,UNIX下的消息队列非常失败,经常发生堵塞现象,现改用FIFO,但FIFO又得自己设计消息,请高手指点
  • 求教,UNP2 FIFO章节的问题
  • [Help]FIFO管道非阻塞通讯问题。。。
  • Linxu中FIFO问题
  • FIFO和Socket通信的并发效率问题
  • 有关FIFO的问题!急急急!!!!
  • 关于unix下的fifo的疑问
  • 求助:FIFO的基本算法问题
  • 关于fifo的问题
  • 请问,FIFO的读写是否有字节数限制,PIPE_BUF如何使用?
  • <strong>*******FIFO 逐行读取 坐等大牛*******</strong>
  • 请教各位fifo的问题。(菜鸟级)
  • tcp与fifo
  • 请问:FIFO文件能用mmap来使用吗?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3