Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/dummy/dummy.c')
-rw-r--r--src/modules/dummy/dummy.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/modules/dummy/dummy.c b/src/modules/dummy/dummy.c
index 3ebe626817a..1495517fbde 100644
--- a/src/modules/dummy/dummy.c
+++ b/src/modules/dummy/dummy.c
@@ -44,8 +44,6 @@ static ZBX_METRIC keys[] =
/******************************************************************************
* *
- * Function: zbx_module_api_version *
- * *
* Purpose: returns version number of the module interface *
* *
* Return value: ZBX_MODULE_API_VERSION - version of module.h module is *
@@ -60,8 +58,6 @@ int zbx_module_api_version(void)
/******************************************************************************
* *
- * Function: zbx_module_item_timeout *
- * *
* Purpose: set timeout value for processing of items *
* *
* Parameters: timeout - timeout in seconds, 0 - no timeout set *
@@ -74,8 +70,6 @@ void zbx_module_item_timeout(int timeout)
/******************************************************************************
* *
- * Function: zbx_module_item_list *
- * *
* Purpose: returns list of item keys supported by the module *
* *
* Return value: list of item keys *
@@ -113,8 +107,6 @@ static int dummy_echo(AGENT_REQUEST *request, AGENT_RESULT *result)
/******************************************************************************
* *
- * Function: dummy_random *
- * *
* Purpose: a main entry point for processing of an item *
* *
* Parameters: request - structure that contains item key and parameters *
@@ -171,8 +163,6 @@ static int dummy_random(AGENT_REQUEST *request, AGENT_RESULT *result)
/******************************************************************************
* *
- * Function: zbx_module_init *
- * *
* Purpose: the function is called on agent startup *
* It should be used to call any initialization routines *
* *
@@ -192,8 +182,6 @@ int zbx_module_init(void)
/******************************************************************************
* *
- * Function: zbx_module_uninit *
- * *
* Purpose: the function is called on agent shutdown *
* It should be used to cleanup used resources if there are any *
* *
@@ -273,8 +261,6 @@ static void dummy_history_log_cb(const ZBX_HISTORY_LOG *history, int history_num
/******************************************************************************
* *
- * Function: zbx_module_history_write_cbs *
- * *
* Purpose: returns a set of module functions Zabbix will call to export *
* different types of historical data *
* *