281df74045
- https://github.com/containerd/go-runc/compare/ed1cbe1fc31f5fb2359d3a54b6330d1a097858b7...4f6e87ae043f859a38255247b49c9abc262d002f - https://github.com/containerd/cgroups/compare/29da22c6171a4316169f9205ab6c49f59b5b852f...c0710c92e8b3a44681d1321dcfd1360fc5c6c089 - runc (already ahead) - https://github.com/stevvooe/ttrpc/compare/76e68349ad9ab4d03d764c713826d31216715e4f...d4528379866b0ce7e9d71f3eb96f0582fc374577 Signed-off-by: Sebastiaan van Stijn <github@gone.nl> Upstream-commit: 175cfdcfb521aa83f6a1441b0a4b99cb159f058d Component: engine
32 lines
991 B
Go
32 lines
991 B
Go
package cgroups
|
|
|
|
import (
|
|
"errors"
|
|
"os"
|
|
)
|
|
|
|
var (
|
|
ErrInvalidPid = errors.New("cgroups: pid must be greater than 0")
|
|
ErrMountPointNotExist = errors.New("cgroups: cgroup mountpoint does not exist")
|
|
ErrInvalidFormat = errors.New("cgroups: parsing file with invalid format failed")
|
|
ErrFreezerNotSupported = errors.New("cgroups: freezer cgroup not supported on this system")
|
|
ErrMemoryNotSupported = errors.New("cgroups: memory cgroup not supported on this system")
|
|
ErrCgroupDeleted = errors.New("cgroups: cgroup deleted")
|
|
ErrNoCgroupMountDestination = errors.New("cgroups: cannot find cgroup mount destination")
|
|
)
|
|
|
|
// ErrorHandler is a function that handles and acts on errors
|
|
type ErrorHandler func(err error) error
|
|
|
|
// IgnoreNotExist ignores any errors that are for not existing files
|
|
func IgnoreNotExist(err error) error {
|
|
if os.IsNotExist(err) {
|
|
return nil
|
|
}
|
|
return err
|
|
}
|
|
|
|
func errPassthrough(err error) error {
|
|
return err
|
|
}
|