mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-06 13:07:21 +00:00
loader: Convert reload_classes to built-in modules.
* acl (named_acl.c) * cdr * cel * ccss * dnsmgr * dsp * enum * extconfig (config.c) * features * http * indications * logger * manager * plc * sounds * udptl These modules are now loaded at appropriate time by the module loader. Unlike loadable modules these use AST_MODULE_LOAD_FAILURE on error so the module loader will abort startup on failure of these modules. Some of these modules are still initialized or shutdown from outside the module loader. logger.c is initialized very early and shutdown very late, manager.c is initialized by the module loader but is shutdown by the Asterisk core (too much uses it without holding references). Change-Id: I371a9a45064f20026c492623ea8062d02a1ab97f
This commit is contained in:
@@ -193,16 +193,4 @@ int ast_dsp_get_tcount(struct ast_dsp *dsp);
|
||||
*/
|
||||
int ast_dsp_get_threshold_from_settings(enum threshold which);
|
||||
|
||||
/*!
|
||||
* \brief Reloads dsp settings from dsp.conf
|
||||
* \since 1.6.1
|
||||
*/
|
||||
int ast_dsp_reload(void);
|
||||
|
||||
/*!
|
||||
* \brief Load dsp settings from dsp.conf
|
||||
* \since 1.6.1
|
||||
*/
|
||||
int ast_dsp_init(void);
|
||||
|
||||
#endif /* _ASTERISK_DSP_H */
|
||||
|
Reference in New Issue
Block a user