github.com/michael-k/docker@v1.7.0-rc2/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 }