ZramStats.h 348 B

123456789101112131415161718
  1. #ifndef HEADER_ZramStats
  2. #define HEADER_ZramStats
  3. /*
  4. htop - ZramStats.h
  5. (C) 2020 htop dev team
  6. Released under the GNU GPLv2+, see the COPYING file
  7. in the source distribution for its full text.
  8. */
  9. #include "ProcessTable.h"
  10. typedef struct ZramStats_ {
  11. memory_t totalZram;
  12. memory_t usedZramComp;
  13. memory_t usedZramOrig;
  14. } ZramStats;
  15. #endif