mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
9b05aa6ee8
Signed-off-by: Brian Goff <cpuguy83@gmail.com>
24 lines
525 B
Go
24 lines
525 B
Go
package sysinfo
|
|
|
|
// SysInfo stores information about which features a kernel supports.
|
|
// TODO Windows: Factor out platform specific capabilities.
|
|
type SysInfo struct {
|
|
AppArmor bool
|
|
*cgroupMemInfo
|
|
*cgroupCpuInfo
|
|
IPv4ForwardingDisabled bool
|
|
BridgeNfCallIptablesDisabled bool
|
|
BridgeNfCallIp6tablesDisabled bool
|
|
CgroupDevicesEnabled bool
|
|
}
|
|
|
|
type cgroupMemInfo struct {
|
|
MemoryLimit bool
|
|
SwapLimit bool
|
|
OomKillDisable bool
|
|
}
|
|
|
|
type cgroupCpuInfo struct {
|
|
CpuCfsPeriod bool
|
|
CpuCfsQuota bool
|
|
}
|