diff options
Diffstat (limited to 'benchmark/bm_vm_thread_queue.rb')
| -rw-r--r-- | benchmark/bm_vm_thread_queue.rb | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/benchmark/bm_vm_thread_queue.rb b/benchmark/bm_vm_thread_queue.rb deleted file mode 100644 index 274ceda366..0000000000 --- a/benchmark/bm_vm_thread_queue.rb +++ /dev/null @@ -1,18 +0,0 @@ -require 'thread' - -n = 1_000_000 -q = Thread::Queue.new -consumer = Thread.new{ - while q.pop - # consuming - end -} - -producer = Thread.new{ - n.times{ - q.push true - } - q.push nil -} - -consumer.join |
