aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/bm_vm_thread_sized_queue.rb
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/bm_vm_thread_sized_queue.rb')
-rw-r--r--benchmark/bm_vm_thread_sized_queue.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/benchmark/bm_vm_thread_sized_queue.rb b/benchmark/bm_vm_thread_sized_queue.rb
deleted file mode 100644
index 7b9af5482b..0000000000
--- a/benchmark/bm_vm_thread_sized_queue.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require 'thread'
-# on producer, one consumer
-
-n = 1_000_000
-q = Thread::SizedQueue.new(100)
-consumer = Thread.new{
- while q.pop
- # consuming
- end
-}
-
-producer = Thread.new{
- while n > 0
- q.push true
- n -= 1
- end
- q.push nil
-}
-
-consumer.join