diff --git a/ChangeLog b/ChangeLog index 7e33350a5d..74c91c2e2a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Jan 7 09:37:24 2013 Koichi Sasada + + * NEWS: add a NEWS entry about RubyVM. + Sun Jan 6 19:06:57 2013 Yuki Yugui Sonoda * win32/Makefile.sub: Fix build with VC. diff --git a/NEWS b/NEWS index d5b7a0ec6b..cb1f126b5d 100644 --- a/NEWS +++ b/NEWS @@ -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.