From 6089f4a10cdff1bbec4e018a216eaeda724c220b Mon Sep 17 00:00:00 2001 From: Jose Alamos <jose.alamos@haw-hamburg.de> Date: Thu, 30 Aug 2018 13:29:32 +0200 Subject: [PATCH] doc/mem_management: add implementations and utils --- pkg/tlsf/contrib/include/tlsf-malloc.h | 2 +- sys/include/memarray.h | 2 +- sys/oneway-malloc/include/malloc.h | 2 +- sys/oneway-malloc/oneway-malloc.c | 3 +-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/pkg/tlsf/contrib/include/tlsf-malloc.h b/pkg/tlsf/contrib/include/tlsf-malloc.h index 2e9c15a45f..e99523fc99 100644 --- a/pkg/tlsf/contrib/include/tlsf-malloc.h +++ b/pkg/tlsf/contrib/include/tlsf-malloc.h @@ -8,7 +8,7 @@ /** * @defgroup pkg_tlsf_malloc TLSF-based malloc. * @ingroup pkg - * @ingroup sys + * @ingroup sys_memory_management * * @brief TLSF-based global memory allocator. * diff --git a/sys/include/memarray.h b/sys/include/memarray.h index c5294aade2..11ad4ed694 100644 --- a/sys/include/memarray.h +++ b/sys/include/memarray.h @@ -7,7 +7,7 @@ */ /** * @defgroup sys_memarray memory array allocator - * @ingroup sys + * @ingroup sys_memory_management * @brief memory array allocator * @{ * diff --git a/sys/oneway-malloc/include/malloc.h b/sys/oneway-malloc/include/malloc.h index 657ea27782..922950d533 100644 --- a/sys/oneway-malloc/include/malloc.h +++ b/sys/oneway-malloc/include/malloc.h @@ -8,7 +8,7 @@ /** * @defgroup oneway_malloc Oneway malloc - * @ingroup sys + * @ingroup sys_memory_management * * @brief A malloc implementation without free for boards where the * toolchain does not implement dynamic memory allocation. diff --git a/sys/oneway-malloc/oneway-malloc.c b/sys/oneway-malloc/oneway-malloc.c index 630a5bf471..dedb12bc0e 100644 --- a/sys/oneway-malloc/oneway-malloc.c +++ b/sys/oneway-malloc/oneway-malloc.c @@ -7,8 +7,7 @@ */ /** - * @addtogroup oneway_malloc - * @ingroup sys + * @ingroup oneway_malloc * @{ * * @file -- GitLab