[Git][ghc/ghc][master] Fix eventlog all option
Marge Bot (@marge-bot)
gitlab at gitlab.haskell.org
Wed Nov 23 17:44:53 UTC 2022
Marge Bot pushed to branch master at Glasgow Haskell Compiler / GHC
Commits:
0b7fef11 by Teo Camarasu at 2022-11-23T12:44:33-05:00
Fix eventlog all option
Previously it didn't enable/disable nonmoving_gc and ticky event types
Fixes #21813
- - - - -
1 changed file:
- rts/RtsFlags.c
Changes:
=====================================
rts/RtsFlags.c
=====================================
@@ -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;
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0b7fef1112c92d2781a7d74e02dceefd4f8cd870
--
View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/0b7fef1112c92d2781a7d74e02dceefd4f8cd870
You're receiving this email because of your account on gitlab.haskell.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.haskell.org/pipermail/ghc-commits/attachments/20221123/ac7bba7c/attachment.html>
More information about the ghc-commits
mailing list