From bb70ca493f4547cbb86c54d216b5559b68f2d860 Mon Sep 17 00:00:00 2001 From: ko1 Date: Mon, 7 Jan 2013 00:38:06 +0000 Subject: [PATCH] * NEWS: add a NEWS entry about RubyVM. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38716 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 4 ++++ NEWS | 15 ++++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) 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.