2014-01-15 14:36:13 -08:00
|
|
|
package sysinfo
|
|
|
|
|
2015-03-26 23:05:07 -04:00
|
|
|
// SysInfo stores information about which features a kernel supports.
|
2015-05-14 09:05:14 -07:00
|
|
|
// TODO Windows: Factor out platform specific capabilities.
|
2014-01-15 14:36:13 -08:00
|
|
|
type SysInfo struct {
|
|
|
|
MemoryLimit bool
|
|
|
|
SwapLimit bool
|
2015-04-08 16:58:59 +08:00
|
|
|
CpuCfsPeriod bool
|
2015-04-20 08:16:47 -07:00
|
|
|
CpuCfsQuota bool
|
2014-01-15 14:36:13 -08:00
|
|
|
IPv4ForwardingDisabled bool
|
|
|
|
AppArmor bool
|
2015-02-26 19:53:55 +08:00
|
|
|
OomKillDisable bool
|
2014-01-15 14:36:13 -08:00
|
|
|
}
|