github.com/dims/containerd@v0.2.5/supervisor/machine_solaris.go (about)

     1  package supervisor
     2  
     3  import (
     4  	"errors"
     5  )
     6  
     7  type Machine struct {
     8  	Cpus   int
     9  	Memory int64
    10  }
    11  
    12  func CollectMachineInformation() (Machine, error) {
    13  	m := Machine{}
    14  	return m, errors.New("supervisor CollectMachineInformation not implemented on Solaris")
    15  }