Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
GHC
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ian-Woo Kim
GHC
Commits
0b7fef11
Commit
0b7fef11
authored
2 years ago
by
Teo Camarasu
Committed by
Marge Bot
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Fix eventlog all option
Previously it didn't enable/disable nonmoving_gc and ticky event types Fixes
#21813
parent
e817c871
Branches
master
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
rts/RtsFlags.c
+4
-0
4 additions, 0 deletions
rts/RtsFlags.c
with
4 additions
and
0 deletions
rts/RtsFlags.c
+
4
−
0
View file @
0b7fef11
...
...
@@ -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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment