⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 memory.h

📁 net_snmp应用程序示例
💻 H
字号:
typedef struct netsnmp_memory_info_s netsnmp_memory_info;#define NETSNMP_MEM_TYPE_MEMORY  1#define NETSNMP_MEM_TYPE_SWAP    2#define NETSNMP_MEM_TYPE_BUFFERS 3struct netsnmp_memory_info_s {     int  idx;     int  type;     long units;     long size;     long free;     long other;     netsnmp_memory_info *next;};    /*     * Possibly not all needed ??     */netsnmp_memory_info *netsnmp_memory_get_first(  int );netsnmp_memory_info *netsnmp_memory_get_next( netsnmp_memory_info*, int );netsnmp_memory_info *netsnmp_memory_get_byIdx(  int,   int );netsnmp_cache *netsnmp_memory_get_cache( void );int netsnmp_memory_load( void );

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -