mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 14:18:12 +00:00
Kernel+LibCore+SystemMonitor: Make thread statistics values 64-bit
Thread statistics values which count bytes are now 64-bit. This avoids overflow when these values go above 4GiB.
This commit is contained in:
parent
75307803a2
commit
8d721dc0f7
4 changed files with 36 additions and 36 deletions
|
@ -22,12 +22,12 @@ struct ThreadStatistics {
|
|||
unsigned inode_faults;
|
||||
unsigned zero_faults;
|
||||
unsigned cow_faults;
|
||||
unsigned unix_socket_read_bytes;
|
||||
unsigned unix_socket_write_bytes;
|
||||
unsigned ipv4_socket_read_bytes;
|
||||
unsigned ipv4_socket_write_bytes;
|
||||
unsigned file_read_bytes;
|
||||
unsigned file_write_bytes;
|
||||
u64 unix_socket_read_bytes;
|
||||
u64 unix_socket_write_bytes;
|
||||
u64 ipv4_socket_read_bytes;
|
||||
u64 ipv4_socket_write_bytes;
|
||||
u64 file_read_bytes;
|
||||
u64 file_write_bytes;
|
||||
DeprecatedString state;
|
||||
u32 cpu;
|
||||
u32 priority;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue