github.com/jzwlqx/containerd@v0.2.5/runtime/container_solaris.go (about)

     1  package runtime
     2  
     3  import (
     4  	"errors"
     5  
     6  	"github.com/docker/containerd/specs"
     7  )
     8  
     9  func (c *container) OOM() (OOM, error) {
    10  	return nil, errors.New("runtime OOM() not implemented on Solaris")
    11  }
    12  
    13  func (c *container) UpdateResources(r *Resource) error {
    14  	return errors.New("runtime UpdateResources() not implemented on Solaris")
    15  }
    16  
    17  func getRootIDs(s *specs.Spec) (int, int, error) {
    18  	return 0, 0, errors.New("runtime getRootIDs() not implemented on Solaris")
    19  }