Prepended disk io struct fields with disk_ prefix

This commit is contained in:
Robert Roth
2017-05-12 05:14:17 +03:00
parent 1bf16bfffd
commit 5880e04fcc
3 changed files with 19 additions and 19 deletions

View File

@@ -17,7 +17,7 @@ static void show_diskio(pid_t pid)
printf("<%ld>\t", (long)pid);
printf("flags: %08lx rchar : %lu, wchar : %lu, read_bytes : %lu, write_bytes : %lu\n", (unsigned long)io.flags, io.rchar, io.wchar, io.rbytes, io.wbytes);
printf("flags: %08lx disk_rchar : %lu, disk_wchar : %lu, disk_read_bytes : %lu, disk_write_bytes : %lu\n", (unsigned long)io.flags, io.disk_rchar, io.disk_wchar, io.disk_rbytes, io.disk_wbytes);
}