summaryrefslogtreecommitdiff
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
authorDavid M. Lee <dlee@digium.com>2013-05-14 21:45:08 +0000
committerDavid M. Lee <dlee@digium.com>2013-05-14 21:45:08 +0000
commite8f4ac6c610265b46014da9259062bb74d3892d1 (patch)
tree1a891ebe67da746feef4733618da502f43efe8d3 /include/asterisk/module.h
parentd1d1425327378e16e77e7de6e64daccf289b4cc3 (diff)
Break res_stasis into smaller files.
When implementing playback for stasis-http, the monolithicedness of res_stasis really started to get in my way. This patch breaks the major components of res_stasis.c into individual files. * res/stasis/app.c - Stasis application tracking * res/stasis/control.c - Channel control objects * res/stasis/command.c - Channel command object This refactoring also allows res_stasis applications to be loaded as independent modules, such as the new res_stasis_answer module. The bulk of this patch is simply moving code from one file to another, adjusting names and adding accessors as necessary. Review: https://reviewboard.asterisk.org/r/2530/ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@388729 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'include/asterisk/module.h')
-rw-r--r--include/asterisk/module.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index a78160749..b0f19be46 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -478,6 +478,9 @@ int ast_register_application2(const char *app, int (*execute)(struct ast_channel
*/
int ast_unregister_application(const char *app);
+/*! Macro to safely ref and unref the self module for the current scope */
+#define SCOPED_MODULE_USE(module) \
+ RAII_VAR(struct ast_module *, __self__ ## __LINE__, ast_module_ref(module), ast_module_unref)
#if defined(__cplusplus) || defined(c_plusplus)
}