aboutsummaryrefslogtreecommitdiffstats
path: root/vm/vmimpl
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-06-20 15:35:45 +0200
committerDmitry Vyukov <dvyukov@google.com>2018-06-22 16:40:45 +0200
commitd3bbcc35ee486a3d456fe58fa0600fc93b7a79fe (patch)
tree53f56f5eb5ab1f30f7df489addeba3a8d9273c94 /vm/vmimpl
parent9a7d0a5412c35bdc7d0ec09fc21c1d4277e62d31 (diff)
vm/vmimpl: add vm.Diagnose method
Diagnose is called on machine hang to try to get some additional diagnostic information from it. For now it's all stubs.
Diffstat (limited to 'vm/vmimpl')
-rw-r--r--vm/vmimpl/vmimpl.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/vm/vmimpl/vmimpl.go b/vm/vmimpl/vmimpl.go
index 532611abd..7d3411ee9 100644
--- a/vm/vmimpl/vmimpl.go
+++ b/vm/vmimpl/vmimpl.go
@@ -43,6 +43,11 @@ type Instance interface {
// Command is terminated after timeout. Send on the stop chan can be used to terminate it earlier.
Run(timeout time.Duration, stop <-chan bool, command string) (outc <-chan []byte, errc <-chan error, err error)
+ // Diagnose forces VM to dump additional debugging info
+ // (e.g. sending some sys-rq's or SIGABORT'ing a Go program).
+ // Returns true if it did anything.
+ Diagnose() bool
+
// Close stops and destroys the VM.
Close()
}