umm: add link
This commit is contained in:
@@ -7,6 +7,7 @@
|
|||||||
#ifdef UMM_INFO
|
#ifdef UMM_INFO
|
||||||
|
|
||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
|
* From https://github.com/rhempel/umm_malloc
|
||||||
* One of the coolest things about this little library is that it's VERY
|
* One of the coolest things about this little library is that it's VERY
|
||||||
* easy to get debug information about the memory heap by simply iterating
|
* easy to get debug information about the memory heap by simply iterating
|
||||||
* through all of the memory blocks.
|
* through all of the memory blocks.
|
||||||
|
|||||||
@@ -5,6 +5,7 @@
|
|||||||
|
|
||||||
#ifdef UMM_INTEGRITY_CHECK
|
#ifdef UMM_INTEGRITY_CHECK
|
||||||
/*
|
/*
|
||||||
|
* From https://github.com/rhempel/umm_malloc
|
||||||
* Perform integrity check of the whole heap data. Returns 1 in case of
|
* Perform integrity check of the whole heap data. Returns 1 in case of
|
||||||
* success, 0 otherwise.
|
* success, 0 otherwise.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
* umm_malloc.c - a memory allocator for embedded systems (microcontrollers)
|
* umm_malloc.c - a memory allocator for embedded systems (microcontrollers)
|
||||||
*
|
*
|
||||||
|
* From https://github.com/rhempel/umm_malloc
|
||||||
* See LICENSE for copyright notice
|
* See LICENSE for copyright notice
|
||||||
* See README.md for acknowledgements and description of internals
|
* See README.md for acknowledgements and description of internals
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
/* ----------------------------------------------------------------------------
|
/* ----------------------------------------------------------------------------
|
||||||
* umm_malloc.h - a memory allocator for embedded systems (microcontrollers)
|
* umm_malloc.h - a memory allocator for embedded systems (microcontrollers)
|
||||||
*
|
*
|
||||||
|
* From https://github.com/rhempel/umm_malloc
|
||||||
* See copyright notice in LICENSE.TXT
|
* See copyright notice in LICENSE.TXT
|
||||||
* ----------------------------------------------------------------------------
|
* ----------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
/* poisoning (UMM_POISON_CHECK) {{{ */
|
/* poisoning (UMM_POISON_CHECK) {{{ */
|
||||||
|
/* From https://github.com/rhempel/umm_malloc */
|
||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <stddef.h>
|
#include <stddef.h>
|
||||||
|
|||||||
Reference in New Issue
Block a user