You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
MangoHud/src/iostats.h

21 lines
369 B
C

#pragma once
#include <pthread.h>
#include <inttypes.h>
struct iostats {
struct {
unsigned long long read_bytes;
unsigned long long write_bytes;
} curr;
struct {
unsigned long long read_bytes;
unsigned long long write_bytes;
} prev;
struct {
float read;
float write;
} diff;
};
void getIoStats(void *args);