Skip to content

Commit

Permalink
Make sure that we mark the permit queue.
Browse files Browse the repository at this point in the history
  • Loading branch information
jnthn committed Jun 26, 2017
1 parent f46a06e commit d0dd989
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/gc/roots.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,12 @@ void MVM_gc_root_add_instance_roots_to_worklist(MVMThreadContext *tc, MVMGCWorkl
add_collectable(tc, worklist, snapshot, tc->instance->compiler_registry, "Compiler registry");
add_collectable(tc, worklist, snapshot, tc->instance->hll_syms, "HLL symbols");
add_collectable(tc, worklist, snapshot, tc->instance->clargs, "Command line args");
add_collectable(tc, worklist, snapshot, tc->instance->event_loop_todo_queue, "Event loop todo queue");
add_collectable(tc, worklist, snapshot, tc->instance->event_loop_cancel_queue, "Event loop cancel queue");
add_collectable(tc, worklist, snapshot, tc->instance->event_loop_todo_queue,
"Event loop todo queue");
add_collectable(tc, worklist, snapshot, tc->instance->event_loop_permit_queue,
"Event loop permit queue");
add_collectable(tc, worklist, snapshot, tc->instance->event_loop_cancel_queue,
"Event loop cancel queue");
add_collectable(tc, worklist, snapshot, tc->instance->event_loop_active, "Event loop active");

int_to_str_cache = tc->instance->int_to_str_cache;
Expand Down

0 comments on commit d0dd989

Please sign in to comment.