Furi: distinct name for auxiliary memory pool

This commit is contained in:
SG
2024-04-09 05:12:15 +03:00
parent 463dc8c727
commit 3a4bff82f4
7 changed files with 18 additions and 18 deletions

View File

@@ -1,5 +1,5 @@
entry,status,name,type,params
Version,+,61.0,,
Version,+,61.1,,
Header,+,applications/drivers/subghz/cc1101_ext/cc1101_ext_interconnect.h,,
Header,+,applications/services/bt/bt_service/bt.h,,
Header,+,applications/services/cli/cli.h,,
@@ -2363,7 +2363,8 @@ Function,+,memchr,void*,"const void*, int, size_t"
Function,+,memcmp,int,"const void*, const void*, size_t"
Function,+,memcpy,void*,"void*, const void*, size_t"
Function,-,memmem,void*,"const void*, size_t, const void*, size_t"
Function,-,memmgr_alloc_from_pool,void*,size_t
Function,-,memmgr_aux_pool_alloc,void*,size_t
Function,-,memmgr_aux_pool_get_free,size_t,
Function,+,memmgr_get_free_heap,size_t,
Function,+,memmgr_get_minimum_free_heap,size_t,
Function,+,memmgr_get_total_heap,size_t,
@@ -2372,7 +2373,6 @@ Function,+,memmgr_heap_enable_thread_trace,void,FuriThreadId
Function,+,memmgr_heap_get_max_free_block,size_t,
Function,+,memmgr_heap_get_thread_memory,size_t,FuriThreadId
Function,+,memmgr_heap_walk_blocks,void,"BlockWalker, void*"
Function,-,memmgr_pool_get_free,size_t,
Function,-,memmgr_pool_get_max_block,size_t,
Function,+,memmove,void*,"void*, const void*, size_t"
Function,-,mempcpy,void*,"void*, const void*, size_t"
1 entry status name type params
2 Version + 61.0 61.1
3 Header + applications/drivers/subghz/cc1101_ext/cc1101_ext_interconnect.h
4 Header + applications/services/bt/bt_service/bt.h
5 Header + applications/services/cli/cli.h
2363 Function + memcmp int const void*, const void*, size_t
2364 Function + memcpy void* void*, const void*, size_t
2365 Function - memmem void* const void*, size_t, const void*, size_t
2366 Function - memmgr_alloc_from_pool memmgr_aux_pool_alloc void* size_t
2367 Function - memmgr_aux_pool_get_free size_t
2368 Function + memmgr_get_free_heap size_t
2369 Function + memmgr_get_minimum_free_heap size_t
2370 Function + memmgr_get_total_heap size_t
2373 Function + memmgr_heap_get_max_free_block size_t
2374 Function + memmgr_heap_get_thread_memory size_t FuriThreadId
2375 Function + memmgr_heap_walk_blocks void BlockWalker, void*
Function - memmgr_pool_get_free size_t
2376 Function - memmgr_pool_get_max_block size_t
2377 Function + memmove void* void*, const void*, size_t
2378 Function - mempcpy void* void*, const void*, size_t

View File

@@ -19,7 +19,7 @@ static SectorCache* cache = NULL;
void sector_cache_init(void) {
if(cache == NULL) {
cache = memmgr_alloc_from_pool(sizeof(SectorCache));
cache = memmgr_aux_pool_alloc(sizeof(SectorCache));
}
if(cache != NULL) {