summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-10 23:01:21 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-03-10 23:01:21 +0000
commit1c47bd88c13a19ce0b0a184d6e552f4d26433ac4 (patch)
tree79c22aff900518bb4e2f2de30ffe23f8397a9363 /lib
parent0b1ff939455a96bb2e715d029c0d412af8de593a (diff)
* lib/thread.rb (Queue#push): return self.
* lib/thread.rb (Queue#clear): ditto. * lib/thread.rb (SizedQueue#push): ditto. * test/thread/test_queue.rb: add tests for the above. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39713 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/thread.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/thread.rb b/lib/thread.rb
index 1c8107085b..0bc95a2594 100644
--- a/lib/thread.rb
+++ b/lib/thread.rb
@@ -165,6 +165,7 @@ class Queue
@que.push obj
@cond.signal
end
+ self
end
end
@@ -228,6 +229,7 @@ class Queue
#
def clear
@que.clear
+ self
end
#
@@ -315,6 +317,7 @@ class SizedQueue < Queue
@que.push obj
@cond.signal
end
+ self
end
end