mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-09-13 22:29:01 -04:00
Bumps [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) from 0.7.5 to 1.0.0. - [Release notes](https://github.com/KimMachineGun/automemlimit/releases) - [Commits](https://github.com/KimMachineGun/automemlimit/compare/v0.7.5...v1.0.0) --- updated-dependencies: - dependency-name: github.com/KimMachineGun/automemlimit dependency-version: 1.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
15 lines
236 B
Go
15 lines
236 B
Go
package memlimit
|
|
|
|
import (
|
|
"github.com/pbnjay/memory"
|
|
)
|
|
|
|
// FromSystem returns the total system memory.
|
|
func FromSystem() (uint64, error) {
|
|
limit := memory.TotalMemory()
|
|
if limit == 0 {
|
|
return 0, ErrNoLimit
|
|
}
|
|
return limit, nil
|
|
}
|