aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/include/chmemcore.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-22 17:18:52 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2011-08-22 17:18:52 +0000
commit2d55ac3059fcca69cc9736db310b4521064c2b23 (patch)
tree6d0721f3bbfbd1d078c6342b4009844fdff129cd /os/kernel/include/chmemcore.h
parent334ee6970801e8b72f8a36daa3d42acda56ec15e (diff)
downloadChibiOS-2d55ac3059fcca69cc9736db310b4521064c2b23.tar.gz
ChibiOS-2d55ac3059fcca69cc9736db310b4521064c2b23.tar.bz2
ChibiOS-2d55ac3059fcca69cc9736db310b4521064c2b23.zip
Documentation improvements and code comments reformatting.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3248 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/chmemcore.h')
-rw-r--r--os/kernel/include/chmemcore.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/os/kernel/include/chmemcore.h b/os/kernel/include/chmemcore.h
index cf608c4e8..5f72a3585 100644
--- a/os/kernel/include/chmemcore.h
+++ b/os/kernel/include/chmemcore.h
@@ -37,6 +37,9 @@
typedef void *(*memgetfunc_t)(size_t size);
/**
+ * @name Alignment support macros
+ */
+/**
* @brief Alignment size constant.
*/
#define MEM_ALIGN_SIZE sizeof(stkalign_t)
@@ -61,6 +64,7 @@ typedef void *(*memgetfunc_t)(size_t size);
* the type @p align_t.
*/
#define MEM_IS_ALIGNED(p) (((size_t)(p) & MEM_ALIGN_MASK) == 0)
+/** @} */
#if CH_USE_MEMCORE || defined(__DOXYGEN__)