aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vmimpl/openbsd.go
Commit message (Collapse)AuthorAgeFilesLines
* all: fix comments formatDmitry Vyukov2020-07-121-3/+3
| | | | | | | Fix capitalization, dots at the end and two spaces after a period. Update #1876
* vm/.../openbsd: get back traces of the first two cpus. (#1705)Greg Steuck2020-04-291-0/+4
|
* vm/vmimpl: refactor DiagnoseFree/OpenBSDDmitry Vyukov2020-03-211-2/+2
| | | | | Make signatures of these functions match vm.Diagnose. Both more flexible, less code, more reasonable.
* openbsd: remove shorten report logic (#986)Anton Lindqvist2019-02-091-1/+2
| | | | | | | | | | | A line length of 79 in the ddb output does not necessarily imply that the following line is a continuation of the current line. Since there's no way to distinguish between ordinary and continuation lines, it could end up corrupting the report by joining two lines that are disjoint[1]. Instead, disable line wrapping in ddb. If we want some kind of wrapping in the future it's easier done by pkg/report. [1] https://syzkaller.appspot.com/bug?extid=03f7377a9848d7d008c9
* openbsd: more witness handlingAnton Lindqvist2019-01-261-0/+3
| | | | | | | | | | * pkg/report: symbolize witness trace on OpenBSD * vm/vmimpl: show witness locks on panic * vm/vmimpl: show memory stats on panic * fixup! pkg/report: symbolize witness trace on OpenBSD
* vm/gce: close old consolew in RunDmitry Vyukov2018-12-021-0/+3
| | | | Run can be executed several times on a VM.
* vm/gce: use openbsd console diagnostic code for both vmm and gceGreg Steuck2018-12-021-0/+27
* openbsd: use console diagnostic code for both vmm and gce. * gometalinter wants less indentation and more stuff in scope * Comment no longer applies