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