summaryrefslogtreecommitdiff
path: root/ruby_2_2/benchmark/bm_vm_thread_alive_check1.rb
diff options
context:
space:
mode:
Diffstat (limited to 'ruby_2_2/benchmark/bm_vm_thread_alive_check1.rb')
-rw-r--r--ruby_2_2/benchmark/bm_vm_thread_alive_check1.rb6
1 files changed, 0 insertions, 6 deletions
diff --git a/ruby_2_2/benchmark/bm_vm_thread_alive_check1.rb b/ruby_2_2/benchmark/bm_vm_thread_alive_check1.rb
deleted file mode 100644
index c993accdda..0000000000
--- a/ruby_2_2/benchmark/bm_vm_thread_alive_check1.rb
+++ /dev/null
@@ -1,6 +0,0 @@
-5_000.times{
- t = Thread.new{}
- while t.alive?
- Thread.pass
- end
-}