This is an archive of the discontinued LLVM Phabricator instance.

Add unix signal hit counts to the target statistics.
ClosedPublic

Authored by clayborg on Oct 27 2021, 6:35 PM.

Details

Summary

Android and other platforms make wide use of signals when running applications and this can slow down debug sessions. Tracking this statistic can help us to determine why a debug session is slow.

The new data appears inside each target object and reports the signal hit counts:

"signals": [
  {
    "SIGSTOP": 1
  },
  {
    "SIGUSR1": 1
  }
],

Diff Detail

Event Timeline

clayborg requested review of this revision.Oct 27 2021, 6:35 PM
clayborg created this revision.
Herald added a project: Restricted Project. · View Herald TranscriptOct 27 2021, 6:35 PM
wallace accepted this revision.Oct 27 2021, 8:32 PM

great!

This revision is now accepted and ready to land.Oct 27 2021, 8:32 PM
This revision was automatically updated to reflect the committed changes.