-
-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
10 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,4 @@ | ||
Heap | ||
==== | ||
Esp32 Heap | ||
========== | ||
|
||
This Component implements heap-related housekeeping functions. Heap usage is tracked using :component:`malloc_count`. | ||
This also provides some validation (using *sentinels* to detect if memory blocks are overwritten). | ||
|
||
.. envvar:: ENABLE_MALLOC_COUNT | ||
|
||
We require :component:`malloc_count` to keep track of heap usage for system_get_free_heap_size(). | ||
It does this by hooking the memory allocation routines (malloc, free, etc.). | ||
If you wish to disable this behaviour, set `ENABLE_MALLOC_COUNT=0`. | ||
If using tools such as `Valgrind <https://www.valgrind.org>`__, this will provide a cleaner trace. | ||
This Component supplments the actual heap implementation provided by the ESP IDF SDK. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
libc | ||
==== | ||
Host libc | ||
========= | ||
|
||
Contains implementations of any non-standard C library functions. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters