about summary refs log tree commit homepage
path: root/lib/rainbows/revactor.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rainbows/revactor.rb')
-rw-r--r--lib/rainbows/revactor.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/rainbows/revactor.rb b/lib/rainbows/revactor.rb
index de423a3..5a9704d 100644
--- a/lib/rainbows/revactor.rb
+++ b/lib/rainbows/revactor.rb
@@ -28,7 +28,7 @@ module Rainbows::Revactor
 
   # once a client is accepted, it is processed in its entirety here
   # in 3 easy steps: read request, call app, write app response
-  def process_client(client)
+  def process_client(client) # :nodoc:
     io = client.instance_variable_get(:@_io)
     io.fcntl(Fcntl::F_SETFD, Fcntl::FD_CLOEXEC)
     rd_args = [ nil ]
@@ -72,7 +72,7 @@ module Rainbows::Revactor
   # runs inside each forked worker, this sits around and waits
   # for connections and doesn't die until the parent dies (or is
   # given a INT, QUIT, or TERM signal)
-  def worker_loop(worker)
+  def worker_loop(worker) #:nodoc:
     init_worker_process(worker)
     self.class.__send__(:alias_method, :write_body, :write_body_each)
     RD_ARGS[:timeout] = G.kato if G.kato > 0