htop/DiskIOMeter.h

21 lines
467 B
C
Raw Normal View History

#ifndef HEADER_DiskIOMeter
#define HEADER_DiskIOMeter
/*
h top - DiskIOMeter*.h
(C) 2020 Christian Göttsche
Released under the GNU GPLv2, see the COPYING file
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;
2020-10-05 11:19:50 +00:00
extern const MeterClass DiskIOMeter_class;
#endif /* HEADER_DiskIOMeter */