Sha256: 7fe7d5d60258e1241636c1145da1dd00a6b244d6acf58a5bf7d7a095947cf837

Contents?: true

Size: 1.19 KB

Versions: 119

Compression:

Stored size: 1.19 KB

Contents

require 'thread'

class String
  if RUBY_VERSION < "1.9"
    def getbyte(index)
      self[index]
    end
  end
end

module Net; module SSH
  
  # This class contains miscellaneous patches and workarounds
  # for different ruby implementations.
  class Compat
    
    # A workaround for an IO#select threading bug in certain versions of MRI 1.8.
    # See: http://net-ssh.lighthouseapp.com/projects/36253/tickets/1-ioselect-threading-bug-in-ruby-18
    # The root issue is documented here: http://redmine.ruby-lang.org/issues/show/1993
    if RUBY_VERSION >= '1.9' || RUBY_PLATFORM == 'java'
      def self.io_select(*params)
        IO.select(*params)
      end
    else
      SELECT_MUTEX = Mutex.new
      def self.io_select(*params)
        # It should be safe to wrap calls in a mutex when the timeout is 0
        # (that is, the call is not supposed to block).
        # We leave blocking calls unprotected to avoid causing deadlocks.
        # This should still catch the main case for Capistrano users.
        if params[3] == 0
          SELECT_MUTEX.synchronize do
            IO.select(*params)
          end
        else
          IO.select(*params)
        end
      end
    end
    
  end
  
end; end

Version data entries

119 entries across 89 versions & 12 rubygems

Version Path
depengine-0.0.3 etc/isolate/ruby-1.8/gems/net-ssh-2.0.23/lib/net/ssh/ruby_compat.rb
depengine-0.0.2 etc/isolate/ruby-1.8/gems/net-ssh-2.0.23/lib/net/ssh/ruby_compat.rb
depengine-0.0.2 etc/isolate/jruby-1.8/gems/net-ssh-2.0.23/lib/net/ssh/ruby_compat.rb
depengine-0.0.1 etc/isolate/jruby-1.8/gems/net-ssh-2.0.23/lib/net/ssh/ruby_compat.rb
depengine-0.0.1 etc/isolate/ruby-1.8/gems/net-ssh-2.0.23/lib/net/ssh/ruby_compat.rb
fragrant-0.0.5 vendor/bundle/ruby/1.9.1/gems/net-ssh-2.2.2/lib/net/ssh/ruby_compat.rb
sonixlabs-net-ssh-2.3.0 lib/net/ssh/ruby_compat.rb
k-yamada-net-ssh-2.3.0 lib/net/ssh/ruby_compat.rb
net-ssh-2.4.0 lib/net/ssh/ruby_compat.rb
ftl-0.2.0 vendor/bundle/gems/net-ssh-2.3.0/lib/net/ssh/ruby_compat.rb
net-ssh-2.3.0 lib/net/ssh/ruby_compat.rb
net-ssh-2.2.2 lib/net/ssh/ruby_compat.rb
net-ssh-2.2.1 lib/net/ssh/ruby_compat.rb
net-ssh-2.2.0 lib/net/ssh/ruby_compat.rb
redcar-dev-0.12.1dev-java plugins/project/vendor/net-ssh/lib/net/ssh/ruby_compat.rb
redcar-dev-0.12.0dev-java plugins/project/vendor/net-ssh/lib/net/ssh/ruby_compat.rb
net-ssh-2.1.4 lib/net/ssh/ruby_compat.rb
redcar-0.11 plugins/project/vendor/net-ssh/lib/net/ssh/ruby_compat.rb
net-ssh-2.1.3 lib/net/ssh/ruby_compat.rb
redcar-0.11.0dev plugins/project/vendor/net-ssh/lib/net/ssh/ruby_compat.rb