MappingSources map each profile.Mapping to the source of the profile. The key is either Mapping.File or Mapping.BuildId.
| 101 | // MappingSources map each profile.Mapping to the source of the profile. |
| 102 | // The key is either Mapping.File or Mapping.BuildId. |
| 103 | type MappingSources map[string][]struct { |
| 104 | Source string // URL of the source the mapping was collected from |
| 105 | Start uint64 // delta applied to addresses from this source (to represent Merge adjustments) |
| 106 | } |
| 107 | |
| 108 | // An ObjTool inspects shared libraries and executable files. |
| 109 | type ObjTool interface { |
nothing calls this directly
no outgoing calls
no test coverage detected