aboutsummaryrefslogtreecommitdiffstats
path: root/os
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-07-15 11:52:28 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-07-15 11:52:28 +0000
commit4b3321c4db8d1ce0c0e69c6d1f6bd5ff25df9ea2 (patch)
treebe8c155fd73e280daca5df9e852bb4fd3bc7290f /os
parentdd2247c0995a32f37a348d9f4237e5b7f8520722 (diff)
downloadChibiOS-4b3321c4db8d1ce0c0e69c6d1f6bd5ff25df9ea2.tar.gz
ChibiOS-4b3321c4db8d1ce0c0e69c6d1f6bd5ff25df9ea2.tar.bz2
ChibiOS-4b3321c4db8d1ce0c0e69c6d1f6bd5ff25df9ea2.zip
Documentation fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12176 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os')
-rw-r--r--os/lib/include/chmempools.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/os/lib/include/chmempools.h b/os/lib/include/chmempools.h
index 72c1e60dd..6e5a45277 100644
--- a/os/lib/include/chmempools.h
+++ b/os/lib/include/chmempools.h
@@ -198,8 +198,7 @@ static inline void chPoolObjectInit(memory_pool_t *mp,
* @pre The memory pool must be already been initialized.
* @pre The added object must be of the right size for the specified
* memory pool.
- * @pre The added object must be memory aligned to the size of
- * @p stkalign_t type.
+ * @pre The added object must be properly aligned.
* @note This function is just an alias for @p chPoolFree() and has been
* added for clarity.
*
@@ -218,8 +217,7 @@ static inline void chPoolAdd(memory_pool_t *mp, void *objp) {
* @pre The memory pool must be already been initialized.
* @pre The added object must be of the right size for the specified
* memory pool.
- * @pre The added object must be memory aligned to the size of
- * @p stkalign_t type.
+ * @pre The added object must be properly aligned.
* @note This function is just an alias for @p chPoolFreeI() and has been
* added for clarity.
*