X7ROOT File Manager
Current Path:
/opt/alt/ruby19/lib64/ruby/1.9.1
opt
/
alt
/
ruby19
/
lib64
/
ruby
/
1.9.1
/
ðŸ“
..
📄
English.rb
(5.59 KB)
📄
abbrev.rb
(2.57 KB)
📄
base64.rb
(2.63 KB)
📄
benchmark.rb
(18 KB)
ðŸ“
cgi
📄
cgi.rb
(9.3 KB)
📄
cmath.rb
(7.22 KB)
📄
complex.rb
(380 B)
📄
csv.rb
(82.66 KB)
ðŸ“
date
📄
date.rb
(946 B)
📄
debug.rb
(23.23 KB)
📄
delegate.rb
(9.74 KB)
ðŸ“
digest
📄
digest.rb
(2.24 KB)
ðŸ“
dl
📄
dl.rb
(176 B)
ðŸ“
drb
📄
drb.rb
(19 B)
📄
e2mmap.rb
(3.8 KB)
📄
erb.rb
(25.72 KB)
📄
expect.rb
(1.33 KB)
ðŸ“
fiddle
📄
fiddle.rb
(928 B)
📄
fileutils.rb
(45.32 KB)
📄
find.rb
(2.03 KB)
📄
forwardable.rb
(7.64 KB)
📄
getoptlong.rb
(15.38 KB)
📄
gserver.rb
(8.83 KB)
📄
ipaddr.rb
(24.92 KB)
ðŸ“
irb
📄
irb.rb
(8.34 KB)
ðŸ“
json
📄
json.rb
(1.74 KB)
📄
kconv.rb
(5.74 KB)
📄
logger.rb
(20.85 KB)
📄
mathn.rb
(6.52 KB)
ðŸ“
matrix
📄
matrix.rb
(47.65 KB)
📄
mkmf.rb
(68.9 KB)
📄
monitor.rb
(6.94 KB)
📄
mutex_m.rb
(1.61 KB)
ðŸ“
net
📄
observer.rb
(5.69 KB)
📄
open-uri.rb
(25.84 KB)
📄
open3.rb
(20.64 KB)
ðŸ“
openssl
📄
openssl.rb
(547 B)
ðŸ“
optparse
📄
optparse.rb
(51.13 KB)
📄
ostruct.rb
(6.49 KB)
📄
pathname.rb
(14.21 KB)
📄
pp.rb
(13.31 KB)
📄
prettyprint.rb
(9.63 KB)
📄
prime.rb
(13.98 KB)
📄
profile.rb
(205 B)
📄
profiler.rb
(1.59 KB)
📄
pstore.rb
(15.81 KB)
ðŸ“
psych
📄
psych.rb
(9.82 KB)
ðŸ“
racc
ðŸ“
rake
📄
rake.rb
(2.02 KB)
📄
rational.rb
(308 B)
ðŸ“
rbconfig
ðŸ“
rdoc
📄
rdoc.rb
(4.29 KB)
📄
resolv-replace.rb
(1.74 KB)
📄
resolv.rb
(59.91 KB)
ðŸ“
rexml
ðŸ“
rinda
ðŸ“
ripper
📄
ripper.rb
(91 B)
ðŸ“
rss
📄
rss.rb
(2.84 KB)
ðŸ“
rubygems
📄
rubygems.rb
(34.13 KB)
📄
scanf.rb
(23.53 KB)
📄
securerandom.rb
(8.46 KB)
📄
set.rb
(29.91 KB)
ðŸ“
shell
📄
shell.rb
(5.9 KB)
📄
shellwords.rb
(3.88 KB)
📄
singleton.rb
(4.02 KB)
📄
socket.rb
(23.22 KB)
ðŸ“
syck
📄
syck.rb
(13.91 KB)
📄
sync.rb
(6.87 KB)
📄
tempfile.rb
(10.42 KB)
ðŸ“
test
📄
thread.rb
(6.59 KB)
📄
thwait.rb
(3.38 KB)
📄
time.rb
(17.03 KB)
📄
timeout.rb
(3.26 KB)
📄
tmpdir.rb
(3.72 KB)
📄
tracer.rb
(6.63 KB)
📄
tsort.rb
(6.79 KB)
📄
ubygems.rb
(268 B)
📄
un.rb
(8.32 KB)
ðŸ“
uri
📄
uri.rb
(3.07 KB)
📄
weakref.rb
(2.29 KB)
ðŸ“
webrick
📄
webrick.rb
(6.8 KB)
ðŸ“
x86_64-linux
ðŸ“
xmlrpc
ðŸ“
yaml
📄
yaml.rb
(2.58 KB)
Editing: thread.rb
# # thread.rb - thread support classes # by Yukihiro Matsumoto <matz@netlab.co.jp> # # Copyright (C) 2001 Yukihiro Matsumoto # Copyright (C) 2000 Network Applied Communication Laboratory, Inc. # Copyright (C) 2000 Information-technology Promotion Agency, Japan # unless defined? Thread raise "Thread not available for this ruby interpreter" end unless defined? ThreadError class ThreadError < StandardError end end if $DEBUG Thread.abort_on_exception = true end # # ConditionVariable objects augment class Mutex. Using condition variables, # it is possible to suspend while in the middle of a critical section until a # resource becomes available. # # Example: # # require 'thread' # # mutex = Mutex.new # resource = ConditionVariable.new # # a = Thread.new { # mutex.synchronize { # # Thread 'a' now needs the resource # resource.wait(mutex) # # 'a' can now have the resource # } # } # # b = Thread.new { # mutex.synchronize { # # Thread 'b' has finished using the resource # resource.signal # } # } # class ConditionVariable # # Creates a new ConditionVariable # def initialize @waiters = [] @waiters_mutex = Mutex.new end # # Releases the lock held in +mutex+ and waits; reacquires the lock on wakeup. # # If +timeout+ is given, this method returns after +timeout+ seconds passed, # even if no other thread doesn't signal. # def wait(mutex, timeout=nil) begin # TODO: mutex should not be used @waiters_mutex.synchronize do @waiters.push(Thread.current) end mutex.sleep timeout ensure @waiters_mutex.synchronize do @waiters.delete(Thread.current) end end self end # # Wakes up the first thread in line waiting for this lock. # def signal begin t = @waiters_mutex.synchronize { @waiters.shift } t.run if t rescue ThreadError retry end self end # # Wakes up all threads waiting for this lock. # def broadcast # TODO: incomplete waiters0 = nil @waiters_mutex.synchronize do waiters0 = @waiters.dup @waiters.clear end for t in waiters0 begin t.run rescue ThreadError end end self end end # # This class provides a way to synchronize communication between threads. # # Example: # # require 'thread' # # queue = Queue.new # # producer = Thread.new do # 5.times do |i| # sleep rand(i) # simulate expense # queue << i # puts "#{i} produced" # end # end # # consumer = Thread.new do # 5.times do |i| # value = queue.pop # sleep rand(i/2) # simulate expense # puts "consumed #{value}" # end # end # # consumer.join # class Queue # # Creates a new queue. # def initialize @que = [] @waiting = [] @que.taint # enable tainted communication @waiting.taint self.taint @mutex = Mutex.new end # # Pushes +obj+ to the queue. # def push(obj) @mutex.synchronize{ @que.push obj begin t = @waiting.shift t.wakeup if t rescue ThreadError retry end } end # # Alias of push # alias << push # # Alias of push # alias enq push # # Retrieves data from the queue. If the queue is empty, the calling thread is # suspended until data is pushed onto the queue. If +non_block+ is true, the # thread isn't suspended, and an exception is raised. # def pop(non_block=false) @mutex.synchronize{ while true if @que.empty? raise ThreadError, "queue empty" if non_block @waiting.push Thread.current @mutex.sleep else return @que.shift end end } end # # Alias of pop # alias shift pop # # Alias of pop # alias deq pop # # Returns +true+ if the queue is empty. # def empty? @que.empty? end # # Removes all objects from the queue. # def clear @que.clear end # # Returns the length of the queue. # def length @que.length end # # Alias of length. # alias size length # # Returns the number of threads waiting on the queue. # def num_waiting @waiting.size end end # # This class represents queues of specified size capacity. The push operation # may be blocked if the capacity is full. # # See Queue for an example of how a SizedQueue works. # class SizedQueue < Queue # # Creates a fixed-length queue with a maximum size of +max+. # def initialize(max) raise ArgumentError, "queue size must be positive" unless max > 0 @max = max @queue_wait = [] @queue_wait.taint # enable tainted comunication super() end # # Returns the maximum size of the queue. # def max @max end # # Sets the maximum size of the queue. # def max=(max) diff = nil @mutex.synchronize { if max <= @max @max = max else diff = max - @max @max = max end } if diff diff.times do begin t = @queue_wait.shift t.run if t rescue ThreadError retry end end end max end # # Pushes +obj+ to the queue. If there is no space left in the queue, waits # until space becomes available. # def push(obj) @mutex.synchronize{ while true break if @que.length < @max @queue_wait.push Thread.current @mutex.sleep end @que.push obj begin t = @waiting.shift t.wakeup if t rescue ThreadError retry end } end # # Alias of push # alias << push # # Alias of push # alias enq push # # Retrieves data from the queue and runs a waiting thread, if any. # def pop(*args) retval = super @mutex.synchronize { if @que.length < @max begin t = @queue_wait.shift t.wakeup if t rescue ThreadError retry end end } retval end # # Alias of pop # alias shift pop # # Alias of pop # alias deq pop # # Returns the number of threads waiting on the queue. # def num_waiting @waiting.size + @queue_wait.size end # # Removes all objects from the queue and wakes waiting threads, if any. # def clear @mutex.synchronize do @que.clear begin until @queue_wait.empty? @queue_wait.shift.wakeup end rescue ThreadError retry end end end end # Documentation comments: # - How do you make RDoc inherit documentation from superclass?
Upload File
Create Folder