Bumps [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) from 0.2.4 to 0.2.6. - [Commits](https://github.com/KimMachineGun/automemlimit/compare/v0.2.4...v0.2.6) --- updated-dependencies: - dependency-name: github.com/KimMachineGun/automemlimit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
21 lines
355 B
Go
21 lines
355 B
Go
//go:build !linux
|
|
// +build !linux
|
|
|
|
package memlimit
|
|
|
|
func FromCgroup() (uint64, error) {
|
|
return 0, ErrCgroupsNotSupported
|
|
}
|
|
|
|
func FromCgroupV1() (uint64, error) {
|
|
return 0, ErrCgroupsNotSupported
|
|
}
|
|
|
|
func fromCgroupHybrid() (uint64, error) {
|
|
return 0, ErrCgroupsNotSupported
|
|
}
|
|
|
|
func FromCgroupV2() (uint64, error) {
|
|
return 0, ErrCgroupsNotSupported
|
|
}
|