diff options
| author | Greg Steuck <blackgnezdo@gmail.com> | 2020-04-29 11:09:59 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-04-29 11:09:59 -0700 |
| commit | 2dd552a5420895f2fe6dcd3b57087cddb373cae9 (patch) | |
| tree | fdea108f500617882992765d8c62fed03a6e3742 | |
| parent | c42af8f753155895a734373c820e76068251ba1b (diff) | |
vm/.../openbsd: get back traces of the first two cpus. (#1705)
| -rw-r--r-- | vm/vmimpl/openbsd.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/vm/vmimpl/openbsd.go b/vm/vmimpl/openbsd.go index 73460cb80..8017ede03 100644 --- a/vm/vmimpl/openbsd.go +++ b/vm/vmimpl/openbsd.go @@ -25,6 +25,10 @@ func DiagnoseOpenBSD(w io.Writer) ([]byte, bool) { "show all locks", "show malloc", "show all pools", + "machine ddbcpu 0", // Traces a couple of first CPUs (enough on GCE farm). + "trace", + "machine ddbcpu 1", // One of these is likely a dup of the very first trace. + "trace", } for _, c := range commands { w.Write([]byte(c + "\n")) |
