X7ROOT File Manager
Current Path:
/opt/alt/ruby22/lib64/ruby/2.2.0
opt
/
alt
/
ruby22
/
lib64
/
ruby
/
2.2.0
/
📁
..
📄
English.rb
(6.42 KB)
📄
abbrev.rb
(3.46 KB)
📄
base64.rb
(2.63 KB)
📄
benchmark.rb
(17.73 KB)
📁
cgi
📄
cgi.rb
(9.77 KB)
📄
cmath.rb
(9.34 KB)
📄
csv.rb
(82.45 KB)
📄
date.rb
(980 B)
📄
debug.rb
(29.08 KB)
📄
delegate.rb
(10.71 KB)
📁
digest
📄
digest.rb
(2.79 KB)
📁
drb
📄
drb.rb
(19 B)
📄
e2mmap.rb
(3.77 KB)
📄
erb.rb
(26.35 KB)
📄
expect.rb
(2.14 KB)
📁
fiddle
📄
fiddle.rb
(1.65 KB)
📄
fileutils.rb
(47.46 KB)
📄
find.rb
(2.48 KB)
📄
forwardable.rb
(8.22 KB)
📄
getoptlong.rb
(15.38 KB)
📁
io
📄
ipaddr.rb
(17.06 KB)
📁
irb
📄
irb.rb
(20.03 KB)
📁
json
📄
json.rb
(1.74 KB)
📄
kconv.rb
(5.74 KB)
📄
logger.rb
(20.33 KB)
📄
mathn.rb
(3.84 KB)
📁
matrix
📄
matrix.rb
(53.14 KB)
📄
mkmf.rb
(82.59 KB)
📄
monitor.rb
(6.93 KB)
📄
mutex_m.rb
(2 KB)
📁
net
📄
observer.rb
(5.8 KB)
📄
open-uri.rb
(24.58 KB)
📄
open3.rb
(20.55 KB)
📁
openssl
📄
openssl.rb
(528 B)
📄
optionparser.rb
(28 B)
📁
optparse
📄
optparse.rb
(52.05 KB)
📄
ostruct.rb
(8.66 KB)
📄
pathname.rb
(15.58 KB)
📄
pp.rb
(14.16 KB)
📄
prettyprint.rb
(15.85 KB)
📄
prime.rb
(13.11 KB)
📄
profile.rb
(205 B)
📄
profiler.rb
(4.51 KB)
📄
pstore.rb
(14.55 KB)
📁
psych
📄
psych.rb
(14.88 KB)
📁
racc
📁
rake
📄
rake.rb
(2.23 KB)
📁
rbconfig
📁
rdoc
📄
rdoc.rb
(4.96 KB)
📄
resolv-replace.rb
(1.73 KB)
📄
resolv.rb
(72.06 KB)
📁
rexml
📁
rinda
📁
ripper
📄
ripper.rb
(2.53 KB)
📁
rss
📄
rss.rb
(2.84 KB)
📁
rubygems
📄
rubygems.rb
(31.85 KB)
📄
scanf.rb
(23.54 KB)
📄
securerandom.rb
(9.2 KB)
📄
set.rb
(19.15 KB)
📁
shell
📄
shell.rb
(11.3 KB)
📄
shellwords.rb
(5.96 KB)
📄
singleton.rb
(4.02 KB)
📄
socket.rb
(25.6 KB)
📄
sync.rb
(7.25 KB)
📁
syslog
📄
tempfile.rb
(11.11 KB)
📄
thwait.rb
(3.31 KB)
📄
time.rb
(22.25 KB)
📄
timeout.rb
(3.64 KB)
📄
tmpdir.rb
(4.13 KB)
📄
tracer.rb
(6.4 KB)
📄
tsort.rb
(14.27 KB)
📄
ubygems.rb
(268 B)
📄
un.rb
(8.87 KB)
📁
unicode_normalize
📄
unicode_normalize.rb
(3.16 KB)
📁
uri
📄
uri.rb
(3.07 KB)
📄
weakref.rb
(2.92 KB)
📁
webrick
📄
webrick.rb
(6.69 KB)
📁
x86_64-linux
📁
xmlrpc
📄
xmlrpc.rb
(8.49 KB)
📁
yaml
📄
yaml.rb
(1.7 KB)
Editing: thwait.rb
# # thwait.rb - thread synchronization class # $Release Version: 0.9 $ # $Revision: 1.3 $ # by Keiju ISHITSUKA(Nihon Rational Software Co.,Ltd.) require "thread.rb" require "e2mmap.rb" # # This class watches for termination of multiple threads. Basic functionality # (wait until specified threads have terminated) can be accessed through the # class method ThreadsWait::all_waits. Finer control can be gained using # instance methods. # # Example: # # ThreadsWait.all_waits(thr1, thr2, ...) do |t| # STDERR.puts "Thread #{t} has terminated." # end # # # th = ThreadsWait.new(thread1,...) # th.next_wait # next one to be done # # class ThreadsWait extend Exception2MessageMapper def_exception("ErrNoWaitingThread", "No threads for waiting.") def_exception("ErrNoFinishedThread", "No finished threads.") # # Waits until all specified threads have terminated. If a block is provided, # it is executed for each thread as they terminate. # def ThreadsWait.all_waits(*threads) # :yield: thread tw = ThreadsWait.new(*threads) if block_given? tw.all_waits do |th| yield th end else tw.all_waits end end # # Creates a ThreadsWait object, specifying the threads to wait on. # Non-blocking. # def initialize(*threads) @threads = [] @wait_queue = Queue.new join_nowait(*threads) unless threads.empty? end # Returns the array of threads that have not terminated yet. attr_reader :threads # # Returns +true+ if there are no threads in the pool still running. # def empty? @threads.empty? end # # Returns +true+ if any thread has terminated and is ready to be collected. # def finished? !@wait_queue.empty? end # # Waits for specified threads to terminate, and returns when one of # the threads terminated. # def join(*threads) join_nowait(*threads) next_wait end # # Specifies the threads that this object will wait for, but does not actually # wait. # def join_nowait(*threads) threads.flatten! @threads.concat threads for th in threads Thread.start(th) do |t| begin t.join ensure @wait_queue.push t end end end end # # Waits until any of the specified threads has terminated, and returns the one # that does. # # If there is no thread to wait, raises +ErrNoWaitingThread+. If +nonblock+ # is true, and there is no terminated thread, raises +ErrNoFinishedThread+. # def next_wait(nonblock = nil) ThreadsWait.fail ErrNoWaitingThread if @threads.empty? begin @threads.delete(th = @wait_queue.pop(nonblock)) th rescue ThreadError ThreadsWait.fail ErrNoFinishedThread end end # # Waits until all of the specified threads are terminated. If a block is # supplied for the method, it is executed for each thread termination. # # Raises exceptions in the same manner as +next_wait+. # def all_waits until @threads.empty? th = next_wait yield th if block_given? end end end ## # An alias for ThreadsWait from thwait.rb ThWait = ThreadsWait # Documentation comments: # - Source of documentation is evenly split between Nutshell, existing # comments, and my own rephrasing. # - I'm not particularly confident that the comments are all exactly correct.
Upload File
Create Folder