mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-01-30 00:41:20 -05: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>
15 lines
243 B
Go
15 lines
243 B
Go
package memlimit
|
|
|
|
import (
|
|
"github.com/pbnjay/memory"
|
|
)
|
|
|
|
// FromSystem returns the total memory of the system.
|
|
func FromSystem() (uint64, error) {
|
|
limit := memory.TotalMemory()
|
|
if limit == 0 {
|
|
return 0, ErrNoLimit
|
|
}
|
|
return limit, nil
|
|
}
|