mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-15 06:18:38 +00:00
Fix shutdown crash caused by modules being left open.
It is only safe to run ast_register_cleanup callbacks when all modules have been unloaded. Previously these callbacks were run during graceful shutdown, making it possible to crash during shutdown. ASTERISK-26513 #close Change-Id: Ibfa635bb688d1227ec54aa211d90d6bd45052e21
This commit is contained in:
@@ -228,13 +228,6 @@ int ast_loader_register(int (*updater)(void));
|
||||
*/
|
||||
int ast_loader_unregister(int (*updater)(void));
|
||||
|
||||
/*!
|
||||
* \brief Run the unload() callback for all loaded modules
|
||||
*
|
||||
* This function should be called when Asterisk is shutting down gracefully.
|
||||
*/
|
||||
void ast_module_shutdown(void);
|
||||
|
||||
/*!
|
||||
* \brief Match modules names for the Asterisk cli.
|
||||
* \param line Unused by this function, but this should be the line we are
|
||||
|
||||
Reference in New Issue
Block a user