summaryrefslogtreecommitdiff
path: root/jni/ruby/benchmark/bm_vm_thread_close.rb
diff options
context:
space:
mode:
Diffstat (limited to 'jni/ruby/benchmark/bm_vm_thread_close.rb')
-rw-r--r--jni/ruby/benchmark/bm_vm_thread_close.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/jni/ruby/benchmark/bm_vm_thread_close.rb b/jni/ruby/benchmark/bm_vm_thread_close.rb
new file mode 100644
index 0000000..3e9a265
--- /dev/null
+++ b/jni/ruby/benchmark/bm_vm_thread_close.rb
@@ -0,0 +1,6 @@
+1000.times { Thread.new { sleep } }
+i = 0
+while i<100_000 # benchmark loop 3
+ i += 1
+ IO.pipe.each(&:close)
+end