Signed-off-by: John Howard <jhoward@microsoft.com> Upstream-commit: b7ee717a10db00858c441f78f2f1a47e2a9493a1 Component: engine
14 lines
374 B
Go
14 lines
374 B
Go
package sysinfo
|
|
|
|
// SysInfo stores information about which features a kernel supports.
|
|
// TODO Windows: Factor out platform specific capabilities.
|
|
type SysInfo struct {
|
|
MemoryLimit bool
|
|
SwapLimit bool
|
|
CpuCfsPeriod bool
|
|
CpuCfsQuota bool
|
|
IPv4ForwardingDisabled bool
|
|
AppArmor bool
|
|
OomKillDisable bool
|
|
}
|