summaryrefslogtreecommitdiff
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2003-08-07 03:48:00 +0000
committerMark Spencer <markster@digium.com>2003-08-07 03:48:00 +0000
commit01fcb9779aa48bdf31c222dd58e1cbe5c6077dfd (patch)
treebf0bf6fdb84162c0fc1e4e237f57ece2dd11d309 /include/asterisk/module.h
parent58022ed110723fea923fa6836c75d149493c0071 (diff)
Allow groups to be checked in reverse order, make musiconhold die on restart
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@1269 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/module.h')
-rwxr-xr-xinclude/asterisk/module.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 93d059d95..39eabce8e 100755
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -140,6 +140,9 @@ int ast_loader_unregister(int (*updater)(void));
*/
void ast_module_reload(void);
+int ast_register_atexit(void (*func)(void));
+void ast_unregister_atexit(void (*func)(void));
+
/* Local user routines keep track of which channels are using a given module resource.
They can help make removing modules safer, particularly if they're in use at the time
they have been requested to be removed */