about summary refs log tree commit homepage
path: root/lib/rainbows/thread_spawn.rb
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2009-10-08 20:28:00 -0700
committerEric Wong <normalperson@yhbt.net>2009-10-08 20:28:00 -0700
commit966dee27d01b68283e80ea544c93f9a659145302 (patch)
tree9a30b3c27887276ca72fc21d1d00c77189b12325 /lib/rainbows/thread_spawn.rb
parentcc50dcc4918c82cee17d9715ec4bf2d588938042 (diff)
downloadrainbows-966dee27d01b68283e80ea544c93f9a659145302.tar.gz
This is for compatibility with OpenBSD as reported
by Jeremy Evans for Unicorn.
Diffstat (limited to 'lib/rainbows/thread_spawn.rb')
-rw-r--r--lib/rainbows/thread_spawn.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rainbows/thread_spawn.rb b/lib/rainbows/thread_spawn.rb
index 7dcd2e4..613a3f0 100644
--- a/lib/rainbows/thread_spawn.rb
+++ b/lib/rainbows/thread_spawn.rb
@@ -17,7 +17,7 @@ module Rainbows
       init_worker_process(worker)
       threads = ThreadGroup.new
       alive = worker.tmp
-      nr = 0
+      m = 0
       limit = worker_connections
 
       # closing anything we IO.select on will raise EBADF
@@ -28,7 +28,7 @@ module Rainbows
 
       while alive && master_pid == Process.ppid
         ret = begin
-          alive.chmod(nr += 1)
+          alive.chmod(m = 0 == m ? 1 : 0)
           IO.select(LISTENERS, nil, nil, timeout/2.0) or next
         rescue Errno::EINTR
           retry