1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* vm.c: fix to recycle thread data (VM stack).

* thread.c: ditto.
* benchmark/bm_vm3_thread_create_join.rb: add loop count.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@13994 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2007-11-21 09:06:06 +00:00
parent 58b1f91b46
commit c79ab68d37
4 changed files with 65 additions and 6 deletions

View file

@ -1,5 +1,5 @@
i=0
while i<1000 # benchmark loop 3
while i<100_000 # benchmark loop 3
i+=1
Thread.new{
}.join