aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2001-04-13 04:06:31 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2001-04-13 04:06:31 +0000
commit2934dc9fcaa28af8ab035bae8c447621eadcd7a7 (patch)
treebc1b03c2c7337a0358fde83e335b9af49064eaef /include/asterisk/module.h
parentc450ef6f4f5980c5bd7a1a39fad1e41a274d33cf (diff)
Version 0.1.8 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@281 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/module.h')
-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 */