| 40 | } |
| 41 | |
| 42 | void printMemoryStats(std::vector<string> pids) |
| 43 | { |
| 44 | for (string pid : pids) |
| 45 | { |
| 46 | string memoryFilePath = "/proc/" + pid + "/statm"; |
| 47 | readFile(memoryFilePath); |
| 48 | } |
| 49 | } |
| 50 | |
| 51 | long long totalDurationSum = 0; |
| 52 | long long measureCount = 0; |
no test coverage detected