mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
astobj2: Eliminate usage of legacy container allocation macros.
These macros have been documented as legacy for a long time but are still used in new code because they exist. Remove all references to: * ao2_container_alloc_options * ao2_t_container_alloc_options * ao2_t_container_alloc These macro's are still available for use but only in modules. Only ao2_container_alloc remains due to it's use in over 100 places. Change-Id: I1a26258b5bf3deb081aaeed11a0baa175c933c7a
This commit is contained in:
@@ -697,8 +697,8 @@ int ast_media_cache_init(void)
|
||||
{
|
||||
ast_register_cleanup(media_cache_shutdown);
|
||||
|
||||
media_cache = ao2_container_alloc_options(AO2_ALLOC_OPT_LOCK_MUTEX, AO2_BUCKETS,
|
||||
ast_sorcery_object_id_hash, ast_sorcery_object_id_compare);
|
||||
media_cache = ao2_container_alloc_hash(AO2_ALLOC_OPT_LOCK_MUTEX, 0, AO2_BUCKETS,
|
||||
ast_sorcery_object_id_hash, NULL, ast_sorcery_object_id_compare);
|
||||
if (!media_cache) {
|
||||
return -1;
|
||||
}
|
||||
|
Reference in New Issue
Block a user