From 2ccf84fd9703a42d1343e5de00bbd319b7e6a7d3 Mon Sep 17 00:00:00 2001 From: akr Date: Mon, 13 Dec 2004 09:57:41 +0000 Subject: * gc.c (set_stack_end): new function to obtain stack end address. set_stack_end obtains a stack end address by an address of local variable in the function. (SET_STACK_END, STACK_END): use set_stack_end. don't use alloca. This makes the conservative garbage collector to scan a stack frame of the garbage_collect function itself. This is required because callee-save registers may be stored in the frame. [ruby-dev:25158] git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7545 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- ChangeLog | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'ChangeLog') diff --git a/ChangeLog b/ChangeLog index 258cc2b65..799b52d32 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Mon Dec 13 18:13:52 2004 Tanaka Akira + + * gc.c (set_stack_end): new function to obtain stack end address. + set_stack_end obtains a stack end address by an address of local + variable in the function. + (SET_STACK_END, STACK_END): use set_stack_end. don't use alloca. + This makes the conservative garbage collector to scan a stack frame + of the garbage_collect function itself. This is required because + callee-save registers may be stored in the frame. + [ruby-dev:25158] + Mon Dec 13 02:45:51 2004 Shugo Maeda * ext/curses/curses.c (window_subwin): call NUM2INT() before -- cgit