diff options
-rw-r--r-- | lib/drb/drb.rb | 1 | ||||
-rw-r--r-- | lib/drb/extservm.rb | 1 | ||||
-rw-r--r-- | lib/irb/ext/multi-irb.rb | 1 | ||||
-rw-r--r-- | lib/irb/workspace.rb | 2 | ||||
-rw-r--r-- | lib/monitor.rb | 2 | ||||
-rw-r--r-- | lib/mutex_m.rb | 3 | ||||
-rw-r--r-- | lib/rinda/rinda.rb | 1 | ||||
-rw-r--r-- | lib/rinda/ring.rb | 1 | ||||
-rw-r--r-- | lib/rinda/tuplespace.rb | 1 | ||||
-rw-r--r-- | lib/shell/command-processor.rb | 1 | ||||
-rw-r--r-- | lib/shell/process-controller.rb | 2 | ||||
-rw-r--r-- | lib/singleton.rb | 1 | ||||
-rw-r--r-- | lib/thwait.rb | 1 | ||||
-rw-r--r-- | lib/tracer.rb | 1 | ||||
-rw-r--r-- | lib/webrick/httpservlet/abstract.rb | 2 | ||||
-rw-r--r-- | lib/webrick/httpservlet/filehandler.rb | 1 | ||||
-rw-r--r-- | lib/webrick/server.rb | 1 | ||||
-rw-r--r-- | lib/webrick/utils.rb | 1 |
18 files changed, 0 insertions, 24 deletions
@@ -47,7 +47,6 @@ # Translation of presentation on Ruby by Masatoshi Seki. require 'socket' -require 'thread' require 'io/wait' require 'drb/eq' @@ -5,7 +5,6 @@ =end require 'drb/drb' -require 'thread' require 'monitor' module DRb @@ -10,7 +10,6 @@ # # IRB.fail CantShiftToMultiIrbMode unless defined?(Thread) -require "thread" module IRB class JobManager @@ -39,8 +39,6 @@ EOF when 2 # binding in loaded file(thread use) unless defined? BINDING_QUEUE - require "thread" - IRB.const_set(:BINDING_QUEUE, Thread::SizedQueue.new(1)) Thread.abort_on_exception = true Thread.start do @@ -7,8 +7,6 @@ # You can freely distribute/modify this library. # -require 'thread' - # # In concurrent programming, a monitor is an object or module intended to be # used safely by more than one thread. The defining characteristic of a @@ -10,9 +10,6 @@ # # -- - -require 'thread' - # = mutex_m.rb # # When 'mutex_m' is required, any object that extends or includes Mutex_m will @@ -1,6 +1,5 @@ # frozen_string_literal: false require 'drb/drb' -require 'thread' ## # A module to implement the Linda distributed computing paradigm in Ruby. @@ -4,7 +4,6 @@ # require 'drb/drb' require 'rinda/rinda' -require 'thread' require 'ipaddr' module Rinda @@ -1,6 +1,5 @@ # frozen_string_literal: false require 'monitor' -require 'thread' require 'drb/drb' require 'rinda/rinda' require 'forwardable' @@ -11,7 +11,6 @@ # require "e2mmap" -require "thread" require "shell/error" require "shell/filter" @@ -10,8 +10,6 @@ # # require "forwardable" - -require "thread" require "sync" class Shell @@ -1,5 +1,4 @@ # frozen_string_literal: false -require 'thread' # The Singleton module implements the Singleton pattern. # @@ -5,7 +5,6 @@ # $Revision: 1.3 $ # by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd.) -require "thread.rb" require "e2mmap.rb" # @@ -2,7 +2,6 @@ #-- # $Release Version: 0.3$ # $Revision: 1.12 $ -require "thread" ## # Outputs a source level execution trace of a Ruby program. @@ -9,8 +9,6 @@ # # $IPR: abstract.rb,v 1.24 2003/07/11 11:16:46 gotoyuzo Exp $ -require 'thread' - require 'webrick/htmlutils' require 'webrick/httputils' require 'webrick/httpstatus' @@ -9,7 +9,6 @@ # # $IPR: filehandler.rb,v 1.44 2003/06/07 01:34:51 gotoyuzo Exp $ -require 'thread' require 'time' require 'webrick/htmlutils' @@ -9,7 +9,6 @@ # # $IPR: server.rb,v 1.62 2003/07/22 19:20:43 gotoyuzo Exp $ -require 'thread' require 'socket' require 'webrick/config' require 'webrick/log' @@ -91,7 +91,6 @@ module WEBrick ########### - require "thread" require "timeout" require "singleton" |