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

📄 generic-data-allocate.m2i

📁 snmp的源代码,已经在我的ubuntu下编译通过
💻 M2I
字号:
#############################################################  -*- c -*-## generic include for XXX. Do not use directly.#### $Id: generic-data-allocate.m2i,v 1.9.2.1 2005/01/03 00:50:29 rstory Exp $########################################################################@if $m2c_mark_boundary == 1@/** START code generated by $RCSfile: generic-data-allocate.m2i,v $ $Revision: 1.9.2.1 $ */@end@##########################################################################/* * ${context}_allocate_data * * Purpose: create new ${context}_data. */${context}_data *${context}_allocate_data(void){@if $m2c_gda_todo_surpress != 1@    /*     * TODO:201:r: |-> allocate memory for the $context data context.     */@end@@if $m2c_data_context != "generated"@    /** this might not be right for $m2c_data_context */@end@    ${context}_data *rtn = SNMP_MALLOC_TYPEDEF(${context}_data);    DEBUGMSGTL(("verbose:${context}:${context}_allocate_data","called\n"));    if(NULL == rtn) {        snmp_log(LOG_ERR, "unable to malloc memory for new "                 "${context}_data.\n");    }    return rtn;} /* ${context}_allocate_data *//* * ${context}_release_data * * Purpose: release ${context} data. */void${context}_release_data(${context}_data *data){    DEBUGMSGTL(("verbose:${context}:${context}_release_data","called\n"));@if $m2c_gda_todo_supress != 1@    /*     * TODO:202:r: |-> release memory for the $context data context.     */@end@    free(data);} /* ${context}_release_data */@eval $m2c_gda_todo_supress = 0@ # reset##########################################################################@if $m2c_mark_boundary == 1@/** END code generated by $RCSfile: generic-data-allocate.m2i,v $ $Revision: 1.9.2.1 $ */@end@

⌨️ 快捷键说明

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