mirror of https://github.com/ARMmbed/mbed-os.git
when split_heap, add 2nd heap size for total heap
parent
25b05a10ec
commit
3d82f3ca66
|
@ -76,6 +76,11 @@ void mbed_stats_heap_get(mbed_stats_heap_t *stats)
|
||||||
extern uint32_t mbed_heap_size;
|
extern uint32_t mbed_heap_size;
|
||||||
heap_stats.reserved_size = mbed_heap_size;
|
heap_stats.reserved_size = mbed_heap_size;
|
||||||
|
|
||||||
|
#if defined(MBED_SPLIT_HEAP)
|
||||||
|
extern uint32_t mbed_heap_size_0;
|
||||||
|
heap_stats.reserved_size += mbed_heap_size_0;
|
||||||
|
#endif
|
||||||
|
|
||||||
malloc_stats_mutex->lock();
|
malloc_stats_mutex->lock();
|
||||||
memcpy(stats, &heap_stats, sizeof(mbed_stats_heap_t));
|
memcpy(stats, &heap_stats, sizeof(mbed_stats_heap_t));
|
||||||
malloc_stats_mutex->unlock();
|
malloc_stats_mutex->unlock();
|
||||||
|
|
Loading…
Reference in New Issue