| 121 | } |
| 122 | |
| 123 | type cgroup struct { |
| 124 | path Path |
| 125 | |
| 126 | subsystems []Subsystem |
| 127 | mu sync.Mutex |
| 128 | err error |
| 129 | } |
| 130 | |
| 131 | // New returns a new sub cgroup |
| 132 | func (c *cgroup) New(name string, resources *specs.LinuxResources) (Cgroup, error) { |
nothing calls this directly
no outgoing calls
no test coverage detected