-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
- Loading branch information
Showing
4 changed files
with
65 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,11 @@ | ||
Wed Nov 21 18:03:49 2007 Koichi Sasada <[email protected]> | ||
|
||
* vm.c: fix to recycle thread data (VM stack). | ||
|
||
* thread.c: ditto. | ||
|
||
* benchmark/bm_vm3_thread_create_join.rb: add loop count. | ||
|
||
Wed Nov 21 18:02:10 2007 Koichi Sasada <[email protected]> | ||
|
||
* benchmark/driver.rb: add path to trunk/lib if driver runner is | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
i=0 | ||
while i<1000 # benchmark loop 3 | ||
while i<100_000 # benchmark loop 3 | ||
i+=1 | ||
Thread.new{ | ||
}.join | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters