| 217 | } |
| 218 | |
| 219 | void SystemStateInfo::ReadCurrentProcDiskStats() { |
| 220 | string path = "/proc/diskstats"; |
| 221 | faststring buf; |
| 222 | if (!ReadFileOrWarn(path, &buf)) return; |
| 223 | ReadProcDiskStatsString(buf.ToString()); |
| 224 | } |
| 225 | |
| 226 | void SystemStateInfo::ReadProcDiskStatsString(const string& disk_stats) { |
| 227 | stringstream ss(disk_stats); |