aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/module.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asterisk/module.h')
-rw-r--r--include/asterisk/module.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/include/asterisk/module.h b/include/asterisk/module.h
index 8b105d19a..3e1667ed0 100644
--- a/include/asterisk/module.h
+++ b/include/asterisk/module.h
@@ -189,6 +189,7 @@ struct ast_module_user_list;
enum ast_module_flags {
AST_MODFLAG_DEFAULT = 0,
AST_MODFLAG_GLOBAL_SYMBOLS = (1 << 0),
+ AST_MODFLAG_LOAD_ORDER = (1 << 1),
};
struct ast_module_info {
@@ -219,6 +220,13 @@ struct ast_module_info {
/*! The value of AST_BUILDOPT_SUM when this module was compiled */
const char buildopt_sum[33];
+
+ /*! This value represents the order in which a module's load() function is initialized.
+ * The lower this value, the higher the priority. The value is only checked if the
+ * AST_MODFLAG_LOAD_ORDER flag is set. If the AST_MODFLAG_LOAD_ORDER flag is not set,
+ * this value will never be read and the module will be given the lowest possible priority
+ * on load. */
+ unsigned char load_pri;
};
void ast_module_register(const struct ast_module_info *);