aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/report/windows.go
Commit message (Collapse)AuthorAgeFilesLines
* pkg/report: remove duplicated stub codeDmitry Vyukov2018-05-071-40/+0
| | | | Update #538
* pkg/report: include Maintainers into reportDmitry Vyukov2017-11-291-13/+1
| | | | | | | | | | | | | | | | | | Currently getting a complete report requires a complex, multi-step dance (including getting information that external users are not interested in -- guilty file). Simplify interface down to 2 functions: Parse and Symbolize. Parse does what it did before, Symbolize symbolizes report and fills in maintainers. This simplifies both implementations of Reporter interface and all users of the interface. Potentially we could get this down to 1 function Parse that does everything. However, (1) Symbolize can fail, while Parse cannot, (2) usually we want to ignore (log) Symbolize errors, but otherwise proceed with the report, (3) repro does not need symbolization for all but the last report.
* pkg/report: combine report data into a structDmitry Vyukov2017-11-141-1/+1
| | | | | Parse returns 5 variables now. Later we may want to add crash "priority". Introduce Report struct that holds all report data.
* pkg/report: add corrupted report detectionAndrey Konovalov2017-11-131-1/+1
| | | | | This change makes pkg/report try to detect corrupted reports by using some heuristics.
* pkg/report: support multiple OSesDmitry Vyukov2017-10-181-0/+52
Introduce report.Reporter interface. Add an implementation per-OS. Make users be explicit about OS they are testing.