github.com/codemac/docker@v1.2.1-0.20150518222241-6a18412d5b9c/pkg/sysinfo/sysinfo.go (about) 1 package sysinfo 2 3 // SysInfo stores information about which features a kernel supports. 4 // TODO Windows: Factor out platform specific capabilities. 5 type SysInfo struct { 6 MemoryLimit bool 7 SwapLimit bool 8 CpuCfsPeriod bool 9 CpuCfsQuota bool 10 IPv4ForwardingDisabled bool 11 AppArmor bool 12 OomKillDisable bool 13 }