Encapsulates the 'stat' information exposed by the cpuacct subsystem.
| 722 | |
| 723 | // Encapsulates the 'stat' information exposed by the cpuacct subsystem. |
| 724 | struct Stats |
| 725 | { |
| 726 | const Duration user; |
| 727 | const Duration system; |
| 728 | }; |
| 729 | |
| 730 | |
| 731 | // Returns 'Stats' for a given hierarchy and cgroup. This function |