繁体   English   中英

epoll_ctl:不允许操作错误 - c程序

[英]epoll_ctl : Operation not permitted error - c program

  1 #include <sys/epoll.h>
  2 #include <stdio.h>
  3 #include <sys/types.h>
  4 #include <sys/stat.h>
  5 #include <fcntl.h>
  6 #include <string.h>
  7 #include <sys/uio.h>
  8 
  9 int main() {
 10   struct epoll_event event ;
 11   int ret,fd, epfd ;
 12 
 13   fd = open("doc", O_RDONLY);
 14   if( fd < 0 )
 15     perror("open");
 16 
 17   event.data.fd = fd ;
 18   event.events = EPOLLIN|EPOLLOUT ;
 19 
 20   epfd = epoll_create(50);
 21   printf("%d", epfd );
 22 
 23   if( epfd < 0 )
 24     perror("epoll_create");
 25 
 26   ret = epoll_ctl( epfd, EPOLL_CTL_ADD, fd, &event ) ;
 27   if( ret < 0 )
 28     perror("epoll_ctl");
 29 
 30 }

编译此代码时,没有错误。 gcc -o epoll epoo.c

但是当我试图执行程序'epoll'时,我收到了错误消息

epoll_ctl:不允许操作。

我试图将'doc'文件的模式更改为0777,但它不起作用。

问题是什么? 谢谢 :)

来自epoll_ctl(2)

   EPERM  The target file fd does not support epoll.

我猜这个doc是一个常规文件。 常规文件随时准备为read(2)write(2)操作,因此它没有意义epoll(7)select(2)上的常规文件。

如果doc是管道或unix域套接字,请在这里发表评论(所以我知道删除我的帖子)并修改你的问题,以便其他人不会犯同样的错误。 :)

在这种情况下,您将打开一个常规文件。 epoll()select()poll()对常规文件没有意义。

如果它是管道或插座,那么:

$mkfifo doc

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM