2006-09-28 Hans Boehm <Hans.Boehm@hp.com>
authorhboehm <hboehm>
Fri, 29 Sep 2006 04:30:04 +0000 (04:30 +0000)
committerIvan Maidanski <ivmai@mail.ru>
Tue, 26 Jul 2011 17:06:38 +0000 (21:06 +0400)
* darwin_stop_world.c (FindTopOfStack): Change parameter type.

darwin_stop_world.c
doc/README.changes

index 4924cfe..d00e3b9 100644 (file)
@@ -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) {
index 7bce6e6..6e4b8e0 100644 (file)
@@ -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,