From c2fdfd99eb5bffee0f6d1e1838fb4708eac18425 Mon Sep 17 00:00:00 2001 From: Christian Goettsche Date: Wed, 21 Oct 2020 17:06:32 +0200 Subject: FreeBSD: implement Platform_getDiskIO() --- DiskIOMeter.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'DiskIOMeter.h') diff --git a/DiskIOMeter.h b/DiskIOMeter.h index c7e4542a..9fca35b1 100644 --- a/DiskIOMeter.h +++ b/DiskIOMeter.h @@ -9,6 +9,12 @@ in the source distribution for its full text. #include "Meter.h" +typedef struct DiskIOData_ { + unsigned long int totalBytesRead; + unsigned long int totalBytesWritten; + unsigned long int totalMsTimeSpend; +} DiskIOData; + extern const MeterClass DiskIOMeter_class; #endif /* HEADER_DiskIOMeter */ -- cgit v1.2.3