Skip to content

Commit

Permalink
0.7.6.16:
Browse files Browse the repository at this point in the history
	Fix for stop'n'copy garbage collection
	... don't unconditionally set current_dynamic_space to be the 0
		space
  • Loading branch information
csrhodes committed Aug 9, 2002
1 parent 5e7911a commit 305177d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion src/runtime/cheneygc.c
Expand Up @@ -568,7 +568,13 @@ gc_init(void)
void
gc_initialize_pointers(void)
{
current_dynamic_space = DYNAMIC_0_SPACE_START;
/* FIXME: We do nothing here. We (briefly) misguidedly attempted
to set current_dynamic_space to DYNAMIC_0_SPACE_START here,
forgetting that (a) actually it could be the other and (b) it's
set in coreparse.c anyway. There's a FIXME note left here to
note that current_dynamic_space is a violation of OAOO: we can
tell which dynamic space we're currently in by looking at
dynamic_space_free_pointer. -- CSR, 2002-08-09 */
}


Expand Down
2 changes: 1 addition & 1 deletion version.lisp-expr
Expand Up @@ -18,4 +18,4 @@
;;; for internal versions, especially for internal versions off the
;;; main CVS branch, it gets hairier, e.g. "0.pre7.14.flaky4.13".)

"0.7.6.15"
"0.7.6.16"

0 comments on commit 305177d

Please sign in to comment.