(ctr *CgroupControl, name string)
| 24 | } |
| 25 | |
| 26 | func readAcct(ctr *CgroupControl, name string) (uint64, error) { |
| 27 | p := filepath.Join(ctr.getCgroupv1Path(CPUAcct), name) |
| 28 | return readFileAsUint64(p) |
| 29 | } |
| 30 | |
| 31 | func readAcctList(ctr *CgroupControl, name string) ([]uint64, error) { |
| 32 | p := filepath.Join(ctr.getCgroupv1Path(CPUAcct), name) |
no test coverage detected
searching dependent graphs…