From: hboehm Date: Fri, 29 Sep 2006 04:30:04 +0000 (+0000) Subject: 2006-09-28 Hans Boehm X-Git-Tag: gc7_0alpha9~27 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=53060b80f23a0d2e1be560a4d8ec997944997da4;p=gc 2006-09-28 Hans Boehm * darwin_stop_world.c (FindTopOfStack): Change parameter type. --- diff --git a/darwin_stop_world.c b/darwin_stop_world.c index 4924cfe1..d00e3b95 100644 --- a/darwin_stop_world.c +++ b/darwin_stop_world.c @@ -30,7 +30,7 @@ typedef struct StackFrame { unsigned long savedRTOC; } StackFrame; -unsigned long FindTopOfStack(unsigned int stack_start) { +unsigned long FindTopOfStack(unsigned long stack_start) { StackFrame *frame; if (stack_start == 0) { diff --git a/doc/README.changes b/doc/README.changes index 7bce6e64..6e4b8e04 100644 --- a/doc/README.changes +++ b/doc/README.changes @@ -2289,6 +2289,7 @@ Since gc6.7: Since gc6.8: - Fix typo in PREFETCH implementation for X86_64. (Thanks to Peter Wang.) + - Fix M68K LINUX port. (Thanks to Debian packagers.) Since gc6.9: - Remove GC_PROTO, VOLATILE, GC_PTR, and GC_CONST. Assume ANSI C compiler @@ -2530,6 +2531,13 @@ Since gc7.0alpha5 - Fix hb_n_marks description and reclaim.c assertion. - Various additional win32 threads fixes. - Enable GC_ASSERTIONS for Debug build with NT_THREADS_MAKEFILE. + +[gc7.0alpha7 was released and version bumped to gc7.0alpha8] + +Since first gc7.0alpha8 version: + [ Some gc6.9 changes ] + - Change FindTopOfStack decl in darwin_stop_world.c. + - Move some static tests from misc.c to gcconfig.h. Use #error. To do: - REDIRECT_MALLOC and threads combination should work on more platforms,