about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2010-12-27 03:01:47 +0000
committerEric Wong <normalperson@yhbt.net>2010-12-27 03:01:47 +0000
commitabb3f7e057bd5fb0aa97cae1410ce2f55ba12b9c (patch)
treed1c3b355c19312e7fb5585e7c833519bcef373b6
parent2d25a86d1d17bd966eea59e5666e41d9da562811 (diff)
downloadrainbows-abb3f7e057bd5fb0aa97cae1410ce2f55ba12b9c.tar.gz
Less visual noise
-rw-r--r--lib/rainbows/fiber/base.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rainbows/fiber/base.rb b/lib/rainbows/fiber/base.rb
index 69bf5d9..ccfda96 100644
--- a/lib/rainbows/fiber/base.rb
+++ b/lib/rainbows/fiber/base.rb
@@ -22,7 +22,7 @@ module Rainbows::Fiber::Base
       G.tick
       RD.compact.each { |c| c.f.resume } # attempt to time out idle clients
       t = schedule_sleepers
-      Kernel.select(RD.compact.concat(LISTENERS), WR.compact, nil, t) or return
+      select(RD.compact.concat(LISTENERS), WR.compact, nil, t) or return
     rescue Errno::EINTR
       retry
     rescue Errno::EBADF, TypeError