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

* NEWS: add a NEWS entry about RubyVM.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2013-01-07 00:38:06 +00:00
parent dfb8687585
commit bb70ca493f
2 changed files with 18 additions and 1 deletions

View file

@ -1,3 +1,7 @@
Mon Jan 7 09:37:24 2013 Koichi Sasada <ko1@atdot.net>
* NEWS: add a NEWS entry about RubyVM.
Sun Jan 6 19:06:57 2013 Yuki Yugui Sonoda <yugui@yugui.jp>
* win32/Makefile.sub: Fix build with VC.

15
NEWS
View file

@ -133,6 +133,19 @@ with all sufficient information, see the ChangeLog file.
* added Range#size for lazy size evaluation.
* added Range#bsearch for binary search.
* RubyVM (MRI specific)
* added Environment variables to specify stack usage:
* RUBY_THREAD_VM_STACK_SIZE: vm stack size used at thread creation.
default: 128KB (32bit CPU) or 256KB (64bit CPU).
* RUBY_THREAD_MACHINE_STACK_SIZE: machine stack size used at thread
creation. default: 512KB or 1024KB.
* RUBY_FIBER_VM_STACK_SIZE: vm stack size used at fiber creation.
default: 64KB or 128KB.
* RUBY_FIBER_MACHINE_STACK_SIZE: machine stack size used at fiber
creation. default: 256KB or 256KB.
These variables are checked only at launched time.
* added constant DEFAULT_PARAMS to get above default parameters.
* Signal
* added method:
* added Signal.signame which returns signal name
@ -166,7 +179,7 @@ with all sufficient information, see the ChangeLog file.
variable has been set.
* added Thread#backtrace_locations which returns similar information of
Kernel#caller_locations.
* incompatible changes:
* incompatible changes:
* Thread#join and Thread#value now raises a ThreadError if target thread
is the current or main thread.