1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-10-02 23:19:08 +00:00
conky/src/diskio.h

18 lines
328 B
C
Raw Normal View History

#ifndef DISKIO_H_
#define DISKIO_H_
struct diskio_stat {
char *dev;
unsigned int current, current_read, current_write, last, last_read,
last_write;
};
#define MAX_DISKIO_STATS 64
struct diskio_stat *diskio_stats;
struct diskio_stat *prepare_diskio_stat(const char *s);
void clear_diskio_stats();
#endif /* DISKIO_H_ */