about summary refs log tree commit homepage
path: root/lib/yahns/queue_epoll.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/yahns/queue_epoll.rb')
-rw-r--r--lib/yahns/queue_epoll.rb3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/yahns/queue_epoll.rb b/lib/yahns/queue_epoll.rb
index 854aba9..4a10ce0 100644
--- a/lib/yahns/queue_epoll.rb
+++ b/lib/yahns/queue_epoll.rb
@@ -13,7 +13,6 @@ class Yahns::Queue < SleepyPenguin::Epoll::IO # :nodoc:
   QEV_QUIT = Epoll::OUT # Level Trigger for QueueQuitter
   QEV_RD = Epoll::IN | Epoll::ONESHOT
   QEV_WR = Epoll::OUT | Epoll::ONESHOT
-  QEV_RDWR = QEV_RD | QEV_WR
 
   def self.new
     super(SleepyPenguin::Epoll::CLOEXEC)
@@ -59,8 +58,6 @@ class Yahns::Queue < SleepyPenguin::Epoll::IO # :nodoc:
             epoll_ctl(Epoll::CTL_MOD, io, QEV_RD)
           when :wait_writable
             epoll_ctl(Epoll::CTL_MOD, io, QEV_WR)
-          when :wait_readwrite
-            epoll_ctl(Epoll::CTL_MOD, io, QEV_RDWR)
           when :ignore # only used by rack.hijack
             # we cannot call Epoll::CTL_DEL after hijacking, the hijacker
             # may have already closed it  Likewise, io.fileno is not