summaryrefslogtreecommitdiff
path: root/include/asterisk
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2001-04-13 04:06:31 +0000
committerMark Spencer <markster@digium.com>2001-04-13 04:06:31 +0000
commit0c0a2993e4a3d3a2a78d81597ccf44754ea7aad8 (patch)
treebc1b03c2c7337a0358fde83e335b9af49064eaef /include/asterisk
parent801db5a7baaf3a2969c9008a3ef95fc824385a30 (diff)
Version 0.1.8 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@281 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk')
-rwxr-xr-xinclude/asterisk/module.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 9a8a7153c..59689ba0b 100755
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -27,7 +27,7 @@ int usecount(void); /* How many channels provided by this module are in use? *
char *description(void); /* Description of this module */
char *key(void); /* Return the below mentioned key, unmodified */
-int reload(void);
+int reload(void); /* reload configs */
#define ASTERISK_GPL_KEY \
"This paragraph is Copyright (C) 2000, Linux Support Services, Inc. \
@@ -61,6 +61,9 @@ int ast_loader_register(int (*updater)(void));
/* No longer run me when modules are updated */
int ast_loader_unregister(int (*updater)(void));
+/* Reload all modules */
+void ast_module_reload(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 */