memory.h
上传用户:wxp200602
上传日期:2007-10-30
资源大小:4028k
文件大小:1k
源码类别:

SNMP编程

开发平台:

Unix_Linux

  1. /*
  2.  *  memory quantity mib groups
  3.  *
  4.  */
  5. #ifndef _MIBGROUP_MEMORY_H
  6. #define _MIBGROUP_MEMORY_H
  7. #include "mibdefs.h"
  8. void            init_memory(void);
  9. /*
  10.  * config file parsing routines 
  11.  */
  12. void            memory_parse_config(const char *, char *);
  13. void            memory_free_config(void);
  14. #define MEMTOTALSWAP 3
  15. #define MEMAVAILSWAP 4
  16. #define MEMTOTALREAL 5
  17. #define MEMAVAILREAL 6
  18. #define MEMTOTALSWAPTXT 7
  19. #define MEMUSEDSWAPTXT 8
  20. #define MEMTOTALREALTXT 9
  21. #define MEMUSEDREALTXT 10
  22. #define MEMTOTALFREE 11
  23. #define MEMSWAPMINIMUM 12
  24. #define MEMSHARED 13
  25. #define MEMBUFFER 14
  26. #define MEMCACHED 15
  27. #define MEMSWAPERROR 16
  28. #endif                          /* _MIBGROUP_MEMORY_H */