Actually link GC allocations onto the gc_alloc_chain, der.

This commit is contained in:
Graydon Hoare 2010-07-02 08:17:41 -07:00
parent c7ef0ded81
commit b2692ef2ec
1 changed files with 1 additions and 0 deletions

View File

@ -413,6 +413,7 @@ rust_task::link_gc(gc_alloc *gcm) {
I(dom, gcm->next == NULL);
gcm->prev = NULL;
gcm->next = gc_alloc_chain;
gc_alloc_chain = gcm;
}
void