aboutsummaryrefslogtreecommitdiffstats
path: root/benchmark/vm_thread_pass_flood.rb
diff options
context:
space:
mode:
authorSamuel Williams <samuel.williams@oriontransfer.co.nz>2019-06-05 16:32:27 +1200
committerSamuel Williams <samuel.williams@oriontransfer.co.nz>2019-06-19 20:39:10 +1200
commit3fd83cb6fcc483d2eac0795bc139c521a3a59bd2 (patch)
tree775fa3b051fa2a50adbc994aeef82d9b2dc2c482 /benchmark/vm_thread_pass_flood.rb
parenta6a4e86029f16415767b579e62691f09b1fb6075 (diff)
downloadruby-3fd83cb6fcc483d2eac0795bc139c521a3a59bd2.tar.gz
Improve benchmarks and tests for threads.
Diffstat (limited to 'benchmark/vm_thread_pass_flood.rb')
-rw-r--r--benchmark/vm_thread_pass_flood.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/benchmark/vm_thread_pass_flood.rb b/benchmark/vm_thread_pass_flood.rb
index a660aafc18..65df8e6154 100644
--- a/benchmark/vm_thread_pass_flood.rb
+++ b/benchmark/vm_thread_pass_flood.rb
@@ -1,10 +1,10 @@
# n.b. this is a good test for GVL when pinned to a single CPU
-1000.times{
+5_000.times{
Thread.new{loop{Thread.pass}}
}
i = 0
-while i<10000
+while i<10_000
i += 1
end