mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-05-10 09:03:16 -04:00
Bumps [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) from 0.4.0 to 0.5.0. - [Commits](https://github.com/KimMachineGun/automemlimit/compare/v0.4.0...v0.5.0) --- updated-dependencies: - dependency-name: github.com/KimMachineGun/automemlimit dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
13 lines
326 B
Go
13 lines
326 B
Go
package memlimit
|
|
|
|
import (
|
|
"errors"
|
|
)
|
|
|
|
var (
|
|
// ErrNoCgroup is returned when the process is not in cgroup.
|
|
ErrNoCgroup = errors.New("process is not in cgroup")
|
|
// ErrCgroupsNotSupported is returned when the system does not support cgroups.
|
|
ErrCgroupsNotSupported = errors.New("cgroups is not supported on this system")
|
|
)
|