Skip to content

Commit

Permalink
sure would be great to GC mark these pointers!
Browse files Browse the repository at this point in the history
  • Loading branch information
timo committed Aug 27, 2019
1 parent c0523a1 commit 773e7b0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/gc/roots.c
Expand Up @@ -134,6 +134,12 @@ void MVM_gc_root_add_instance_roots_to_worklist(MVMThreadContext *tc, MVMGCWorkl
if (tc->instance->confprog)
MVM_confprog_mark(tc, worklist, snapshot);

add_collectable(tc, worklist, snapshot, tc->instance->subscriptions.subscription_queue,
"VM Event Subscription Queue");

add_collectable(tc, worklist, snapshot, tc->instance->subscriptions.GCEvent,
"VM Event GCEvent type");

MVM_debugserver_mark_handles(tc, worklist, snapshot);
}

Expand Down

0 comments on commit 773e7b0

Please sign in to comment.