summaryrefslogtreecommitdiff
path: root/benchmark
diff options
context:
space:
mode:
authorkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-14 18:54:30 +0000
committerkosaki <kosaki@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-14 18:54:30 +0000
commit7f6e8625bbb71d4cf0826b56e152509fda00bab1 (patch)
tree3400b5c9bde595cd3f575b13636b57e44bfb6154 /benchmark
parent556cd0de071dcddd85c3d56b35d208250863f5b5 (diff)
* benchmark/bm_vm4_pass_flood.rb: new benchmark for GVL fairness.
* benchmark/bm_vm4_alive_check1.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32093 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'benchmark')
-rw-r--r--benchmark/bm_vm4_alive_check1.rb6
-rw-r--r--benchmark/bm_vm4_pass_flood.rb8
2 files changed, 14 insertions, 0 deletions
diff --git a/benchmark/bm_vm4_alive_check1.rb b/benchmark/bm_vm4_alive_check1.rb
new file mode 100644
index 0000000000..aebe99875d
--- /dev/null
+++ b/benchmark/bm_vm4_alive_check1.rb
@@ -0,0 +1,6 @@
+5000.times{
+ t = Thread.new{}
+ while t.alive?
+ Thread.pass
+ end
+}
diff --git a/benchmark/bm_vm4_pass_flood.rb b/benchmark/bm_vm4_pass_flood.rb
new file mode 100644
index 0000000000..56b5b0a956
--- /dev/null
+++ b/benchmark/bm_vm4_pass_flood.rb
@@ -0,0 +1,8 @@
+1000.times{
+ Thread.new{loop{Thread.pass}}
+}
+
+i=0
+while i<10000
+ i += 1
+end