aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/vm_thread_sized_queue.yml
diff options
context:
space:
mode:
Diffstat (limited to 'benchmark/vm_thread_sized_queue.yml')
-rw-r--r--benchmark/vm_thread_sized_queue.yml23
1 files changed, 0 insertions, 23 deletions
diff --git a/benchmark/vm_thread_sized_queue.yml b/benchmark/vm_thread_sized_queue.yml
deleted file mode 100644
index 0a79bd4fc1..0000000000
--- a/benchmark/vm_thread_sized_queue.yml
+++ /dev/null
@@ -1,23 +0,0 @@
-benchmark:
- vm_thread_sized_queue: |
- 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
-loop_count: 1