about summary refs log tree commit homepage
path: root/lib/rainbows/epoll.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2011-01-20 20:32:24 +0000
committerEric Wong <normalperson@yhbt.net>2011-01-20 20:32:24 +0000
commit7ad4e300c29b06fd53aca9f9bad18f97f9a34633 (patch)
tree4d04679ace5f876e642b6b091deb18025b10c9d1 /lib/rainbows/epoll.rb
parent72cbecfe01b8c4b2c7bb7e362401805374036dc2 (diff)
downloadrainbows-7ad4e300c29b06fd53aca9f9bad18f97f9a34633.tar.gz
ev_core is always loaded after forking, so eliminate the
need for extra setup steps for each concurrency model that
uses it
Diffstat (limited to 'lib/rainbows/epoll.rb')
-rw-r--r--lib/rainbows/epoll.rb1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/rainbows/epoll.rb b/lib/rainbows/epoll.rb
index 8698f78..52216b3 100644
--- a/lib/rainbows/epoll.rb
+++ b/lib/rainbows/epoll.rb
@@ -15,7 +15,6 @@ module Rainbows::Epoll
 
   def worker_loop(worker) # :nodoc:
     init_worker_process(worker)
-    Rainbows::EvCore.setup
     Rainbows::Client.__send__ :include, Client
     Server.run
   end