[FL-1326] Move heap4 allocator to furi core and add allocation tracing capability (#529)

* Move heap memory allocator to furi core
* Newlibc: add malloc guards
* Furi: add cmsis thread id getter
* Core: add tracing capability to heap allocator. Add heap tracing support to furi thread. Add heap trace support to app-loader.
This commit is contained in:
あく
2021-06-23 17:48:44 +03:00
committed by GitHub
parent 6ec9c6cc49
commit 359bbdfe69
10 changed files with 600 additions and 33 deletions

View File

@@ -5,6 +5,7 @@
#include <furi/common_defines.h>
#include <furi/check.h>
#include <furi/memmgr.h>
#include <furi/memmgr_heap.h>
#include <furi/pubsub.h>
#include <furi/record.h>
#include <furi/stdglue.h>