# File lib/slave.rb, line 101
      def fork(&b)
        v = $VERBOSE
        begin
          $VERBOSE = nil
          Process::fork(&b)
        ensure
        $VERBOSE = v
        end
      end