summaryrefslogtreecommitdiff
path: root/funcs
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2014-04-23 15:02:39 +0000
committerRussell Bryant <russell@russellbryant.com>2014-04-23 15:02:39 +0000
commit4b9b4790d95624152b2b0f0e474a9290c94516a6 (patch)
tree6c15385187b74e083f65bbce9960856617f2c2ac /funcs
parent9b71a87108e8547f2bd02e5d685cd502bf4e822a (diff)
Fix error loading res_monitor.
For some odd reason, loading app_mixmonitor was fine, but res_monitor was not. This patch fixes a set of issues related to func_periodic_hook exporting the beep functions that gets res_monitor working again. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@412910 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs')
-rw-r--r--funcs/func_periodic_hook.c5
-rw-r--r--funcs/func_periodic_hook.exports.in7
2 files changed, 11 insertions, 1 deletions
diff --git a/funcs/func_periodic_hook.c b/funcs/func_periodic_hook.c
index 39dfab396..4ee98f3ff 100644
--- a/funcs/func_periodic_hook.c
+++ b/funcs/func_periodic_hook.c
@@ -520,4 +520,7 @@ int AST_OPTIONAL_API_NAME(ast_beep_stop)(struct ast_channel *chan, const char *b
return hook_write(chan, NULL, (char *) beep_id, "off");
}
-AST_MODULE_INFO_STANDARD(ASTERISK_GPL_KEY, "Periodic dialplan hooks.");
+AST_MODULE_INFO(ASTERISK_GPL_KEY, AST_MODFLAG_GLOBAL_SYMBOLS, "Periodic dialplan hooks.",
+ .load = load_module,
+ .unload = unload_module,
+ );
diff --git a/funcs/func_periodic_hook.exports.in b/funcs/func_periodic_hook.exports.in
new file mode 100644
index 000000000..0ca2f0bee
--- /dev/null
+++ b/funcs/func_periodic_hook.exports.in
@@ -0,0 +1,7 @@
+{
+ global:
+ LINKER_SYMBOL_PREFIX*ast_beep_start;
+ LINKER_SYMBOL_PREFIX*ast_beep_stop;
+ local:
+ *;
+};