2020-09-13 17:46:34 +00:00
|
|
|
#ifndef HEADER_DiskIOMeter
|
|
|
|
#define HEADER_DiskIOMeter
|
|
|
|
/*
|
|
|
|
h top - DiskIOMeter*.h
|
|
|
|
(C) 2020 Christian Göttsche
|
2020-10-05 07:51:32 +00:00
|
|
|
Released under the GNU GPLv2, see the COPYING file
|
2020-09-13 17:46:34 +00:00
|
|
|
in the source distribution for its full text.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "Meter.h"
|
|
|
|
|
2020-10-21 15:06:32 +00:00
|
|
|
typedef struct DiskIOData_ {
|
|
|
|
unsigned long int totalBytesRead;
|
|
|
|
unsigned long int totalBytesWritten;
|
|
|
|
unsigned long int totalMsTimeSpend;
|
|
|
|
} DiskIOData;
|
|
|
|
|
2020-10-05 11:19:50 +00:00
|
|
|
extern const MeterClass DiskIOMeter_class;
|
2020-09-13 17:46:34 +00:00
|
|
|
|
|
|
|
#endif /* HEADER_DiskIOMeter */
|