Skip to content

Commit

Permalink
Merge pull request #1610 from iaalm/main
Browse files Browse the repository at this point in the history
Kernel based event can not be disabled on UI
  • Loading branch information
brianrob authored Apr 12, 2022
2 parents f570067 + 3defa77 commit b386758
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/PerfView/Dialogs/RunCommandDialog.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -658,6 +658,10 @@ private bool PopulateCommandLineArgs()
{
m_args.KernelEvents = (KernelTraceEventParser.Keywords)(KernelTraceEventParser.Keywords.Default - KernelTraceEventParser.Keywords.Profile);
}
else
{
m_args.KernelEvents = KernelTraceEventParser.Keywords.None;
}

if (CpuSamplesCheckBox.IsChecked ?? false)
{
Expand Down

0 comments on commit b386758

Please sign in to comment.