mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
b7ee717a10
Signed-off-by: John Howard <jhoward@microsoft.com>
13 lines
374 B
Go
13 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
|
|
}
|