blob: f71a6c27404866d9b94454cfddec1ab80694653b [file] [log] [blame]
Murloc Knightab17ef42020-09-22 18:54:15 +07001#ifndef HEADER_ZramStats
2#define HEADER_ZramStats
Ivan Shapovalov0c8df5f2023-04-23 01:07:19 +03003/*
4htop - ZramStats.h
5(C) 2020 htop dev team
6Released under the GNU GPLv2+, see the COPYING file
7in the source distribution for its full text.
8*/
9
Nathan Scottb74673f2023-08-31 11:56:43 +100010#include "ProcessTable.h"
Murloc Knightab17ef42020-09-22 18:54:15 +070011
12typedef struct ZramStats_ {
Christian Göttsche3d497a32021-01-06 18:11:24 +010013 memory_t totalZram;
14 memory_t usedZramComp;
15 memory_t usedZramOrig;
Murloc Knightab17ef42020-09-22 18:54:15 +070016} ZramStats;
17
18#endif