Skip to content
Snippets Groups Projects
Commit 0b7fef11 authored by Teo Camarasu's avatar Teo Camarasu Committed by Marge Bot
Browse files

Fix eventlog all option

Previously it didn't enable/disable nonmoving_gc and ticky event types

Fixes #21813
parent e817c871
Branches master
No related tags found
No related merge requests found
......@@ -2373,6 +2373,10 @@ static void read_trace_flags(const char *arg)
RtsFlags.TraceFlags.sparks_sampled = enabled;
RtsFlags.TraceFlags.sparks_full = enabled;
RtsFlags.TraceFlags.user = enabled;
RtsFlags.TraceFlags.nonmoving_gc = enabled;
#if defined(TICKY_TICKY)
RtsFlags.TraceFlags.ticky = enabled;
#endif
enabled = true;
break;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment