/usr/share/snmp/mib2c-data/generic-data-allocate.m2i is in libsnmp-base 5.4.3~dfsg-2.8+deb7u1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | ############################################################# -*- c -*-
## generic include for XXX. Do not use directly.
##
## $Id: generic-data-allocate.m2i 11948 2005-02-25 22:36:30Z rstory $
########################################################################
@if $m2c_mark_boundary == 1@
/** START code generated by $RCSfile$ $Revision: 11948 $ */
@end@
########################################################################
##
/*
* ${context}_allocate_data
*
* Purpose: create new ${context}_data.
*/
${context}_data *
${context}_allocate_data(void)
{
@if $m2c_gda_todo_suppress != 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_suppress != 1@
/*
* TODO:202:r: |-> release memory for the $context data context.
*/
@end@
free(data);
} /* ${context}_release_data */
@eval $m2c_gda_todo_suppress = 0@ # reset
##
########################################################################
@if $m2c_mark_boundary == 1@
/** END code generated by $RCSfile$ $Revision: 11948 $ */
@end@
|