summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuigi Rizzo <rizzo@icir.org>2006-04-11 15:55:56 +0000
committerLuigi Rizzo <rizzo@icir.org>2006-04-11 15:55:56 +0000
commite785b81c5da93400155ba054196628039e517403 (patch)
treef4cacc01a944a8dac2060592a3a1f8398b7e7318
parent63de32ac00ddd991a86e4ad2e8fbeee1248d0a40 (diff)
as discussed with kevin, move
ast_register_atexit()/ ast_unregister_atexit() into asterisk.h These are general functions, not restricted to modules, so move them in a more proper place. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@19223 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rw-r--r--include/asterisk.h14
-rw-r--r--include/asterisk/module.h14
2 files changed, 14 insertions, 14 deletions
diff --git a/include/asterisk.h b/include/asterisk.h
index 97682423e..38b0f67ab 100644
--- a/include/asterisk.h
+++ b/include/asterisk.h
@@ -72,6 +72,20 @@ void dnsmgr_start_refresh(void);
int dnsmgr_reload(void);
/*!
+ * \brief Register a function to be executed before Asterisk exits.
+ * \param func The callback function to use.
+ *
+ * \return Zero on success, -1 on error.
+ */
+int ast_register_atexit(void (*func)(void));
+
+/*!
+ * \brief Unregister a function registered with ast_register_atexit().
+ * \param func The callback function to unregister.
+ */
+void ast_unregister_atexit(void (*func)(void));
+
+/*!
* \brief Register the version of a source code file with the core.
* \param file the source file name
* \param version the version string (typically a CVS revision keyword string)
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 5447a614d..80d0b5793 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -260,20 +260,6 @@ int ast_module_reload(const char *name);
*/
char *ast_module_helper(const char *line, const char *word, int pos, int state, int rpos, int needsreload);
-/*!
- * \brief Register a function to be executed before Asterisk exits.
- * \param func The callback function to use.
- *
- * \return Zero on success, -1 on error.
- */
-int ast_register_atexit(void (*func)(void));
-
-/*!
- * \brief Unregister a function registered with ast_register_atexit().
- * \param func The callback function to unregister.
- */
-void ast_unregister_atexit(void (*func)(void));
-
/*!
* \brief Given a function address, find the corresponding module.
* This is required as a workaround to the fact that we do not