Files
opentf/vendor/github.com/opencontainers/runc/libcontainer/configs/hugepage_limit.go
Mitchell Hashimoto 8af241e501 vendor: Nomad
2016-10-24 10:33:59 -07:00

10 lines
180 B
Go

package configs
type HugepageLimit struct {
// which type of hugepage to limit.
Pagesize string `json:"page_size"`
// usage limit for hugepage.
Limit uint64 `json:"limit"`
}