doc/mem_management: add implementations and utils

This commit is contained in:
Jose Alamos 2018-08-30 13:29:32 +02:00
parent dc9d77057d
commit 6089f4a10c
4 changed files with 4 additions and 5 deletions

View File

@ -8,7 +8,7 @@
/** /**
* @defgroup pkg_tlsf_malloc TLSF-based malloc. * @defgroup pkg_tlsf_malloc TLSF-based malloc.
* @ingroup pkg * @ingroup pkg
* @ingroup sys * @ingroup sys_memory_management
* *
* @brief TLSF-based global memory allocator. * @brief TLSF-based global memory allocator.
* *

View File

@ -7,7 +7,7 @@
*/ */
/** /**
* @defgroup sys_memarray memory array allocator * @defgroup sys_memarray memory array allocator
* @ingroup sys * @ingroup sys_memory_management
* @brief memory array allocator * @brief memory array allocator
* @{ * @{
* *

View File

@ -8,7 +8,7 @@
/** /**
* @defgroup oneway_malloc Oneway malloc * @defgroup oneway_malloc Oneway malloc
* @ingroup sys * @ingroup sys_memory_management
* *
* @brief A malloc implementation without free for boards where the * @brief A malloc implementation without free for boards where the
* toolchain does not implement dynamic memory allocation. * toolchain does not implement dynamic memory allocation.

View File

@ -7,8 +7,7 @@
*/ */
/** /**
* @addtogroup oneway_malloc * @ingroup oneway_malloc
* @ingroup sys
* @{ * @{
* *
* @file * @file