|
Server : LiteSpeed System : Linux srv107862549.host 5.15.0-124-generic #134-Ubuntu SMP Fri Sep 27 20:20:17 UTC 2024 x86_64 User : malam2778 ( 1069) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/snmp/mib2c-data/ |
Upload File : |
############################################################# -*- c -*-
## generic include for XXX. Do not use directly.
##
########################################################################
@if $m2c_mark_boundary == 1@
/** START code generated by generic-data-allocate.m2i */
@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 generic-data-allocate.m2i */
@end@