container_solaris.go 454 B

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