diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-05-03 11:19:35 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-05-03 11:19:35 +0000 |
commit | 380a8d3808c38b2e3f2d97a3c2bf5094e0f0386a (patch) | |
tree | 22aab283509cdf9af2c29fc1be16ce44cc3a3511 /os/lib/src/chmemcore.c | |
parent | 1ceb50bebef5072a3686f225fe1d3aff5283fbda (diff) | |
download | ChibiOS-380a8d3808c38b2e3f2d97a3c2bf5094e0f0386a.tar.gz ChibiOS-380a8d3808c38b2e3f2d97a3c2bf5094e0f0386a.tar.bz2 ChibiOS-380a8d3808c38b2e3f2d97a3c2bf5094e0f0386a.zip |
Documentation-related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11988 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/lib/src/chmemcore.c')
-rw-r--r-- | os/lib/src/chmemcore.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/os/lib/src/chmemcore.c b/os/lib/src/chmemcore.c index bb3832171..5dc3ce446 100644 --- a/os/lib/src/chmemcore.c +++ b/os/lib/src/chmemcore.c @@ -21,7 +21,7 @@ * @file chmemcore.c
* @brief Core memory manager code.
*
- * @addtogroup memcore
+ * @addtogroup oslib_memcore
* @details Core Memory Manager related APIs and services.
* <h2>Operation mode</h2>
* The core memory manager is a simplified allocator that only
@@ -30,8 +30,8 @@ * This allocator is meant as a memory blocks provider for the
* other allocators such as:
* - C-Runtime allocator (through a compiler specific adapter module).
- * - Heap allocator (see @ref heaps).
- * - Memory pools allocator (see @ref pools).
+ * - Heap allocator (see @ref oslib_memheaps).
+ * - Memory pools allocator (see @ref oslib_mempools).
* .
* By having a centralized memory provider the various allocators
* can coexist and share the main memory.<br>
|