summaryrefslogtreecommitdiff
path: root/jni/ruby/benchmark/bm_vm_thread_pass_flood.rb
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/benchmark/bm_vm_thread_pass_flood.rb')
-rw-r--r--jni/ruby/benchmark/bm_vm_thread_pass_flood.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/jni/ruby/benchmark/bm_vm_thread_pass_flood.rb b/jni/ruby/benchmark/bm_vm_thread_pass_flood.rb
new file mode 100644
index 0000000..27157d1
--- /dev/null
+++ b/jni/ruby/benchmark/bm_vm_thread_pass_flood.rb
@@ -0,0 +1,8 @@
+1000.times{
+ Thread.new{loop{Thread.pass}}
+}
+
+i = 0
+while i<10000
+ i += 1
+end