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

📄 malloc_ctl.h

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 H
字号:
#ifndef MALLOC_CTL_H#  define MALLOC_CTL_Hstruct perl_mstats {    UV *nfree;    UV *ntotal;    IV topbucket, topbucket_ev, topbucket_odd, totfree, total, total_chain;    IV total_sbrk, sbrks, sbrk_good, sbrk_slack, start_slack, sbrked_remains;    IV minbucket;    /* Level 1 info */    UV *bucket_mem_size;    UV *bucket_available_size;    UV nbuckets;};typedef struct perl_mstats perl_mstats_t;START_EXTERN_CMalloc_t Perl_malloc (MEM_SIZE nbytes);Malloc_t Perl_calloc (MEM_SIZE elements, MEM_SIZE size);Malloc_t Perl_realloc (Malloc_t where, MEM_SIZE nbytes);/* 'mfree' rather than 'free', since there is already a 'perl_free' * that causes clashes with case-insensitive linkers */Free_t   Perl_mfree (Malloc_t where);END_EXTERN_C#ifndef NO_MALLOC_DYNAMIC_CFG/* IV configuration data */enum {  MallocCfg_FIRST_SBRK,  MallocCfg_MIN_SBRK,  MallocCfg_MIN_SBRK_FRAC1000,  MallocCfg_SBRK_ALLOW_FAILURES,  MallocCfg_SBRK_FAILURE_PRICE,  MallocCfg_sbrk_goodness,  MallocCfg_filldead,  MallocCfg_fillalive,  MallocCfg_fillcheck,  MallocCfg_skip_cfg_env,  MallocCfg_cfg_env_read,  MallocCfg_emergency_buffer_size,  MallocCfg_emergency_buffer_last_req,  MallocCfg_emergency_buffer_prepared_size,  MallocCfg_last};/* char* configuration data */enum {  MallocCfgP_emergency_buffer,  MallocCfgP_emergency_buffer_prepared,  MallocCfgP_last};START_EXTERN_Cextern IV *MallocCfg_ptr;extern char **MallocCfgP_ptr;END_EXTERN_C#endif#endif

⌨️ 快捷键说明

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