diff options
Diffstat (limited to 'vm/vmimpl/vmimpl.go')
| -rw-r--r-- | vm/vmimpl/vmimpl.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/vm/vmimpl/vmimpl.go b/vm/vmimpl/vmimpl.go index 8b63ca77e..a9afdc1f1 100644 --- a/vm/vmimpl/vmimpl.go +++ b/vm/vmimpl/vmimpl.go @@ -67,6 +67,11 @@ type Infoer interface { Info() ([]byte, error) } +// PprofPortProvider is used when the instance wants to define a custom pprof port. +type PprofPortProvider interface { + PprofPort() int +} + // Env contains global constant parameters for a pool of VMs. type Env struct { // Unique name |
