diff options
author | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-07-15 11:52:28 +0000 |
---|---|---|
committer | Giovanni Di Sirio <gdisirio@gmail.com> | 2018-07-15 11:52:28 +0000 |
commit | 4b3321c4db8d1ce0c0e69c6d1f6bd5ff25df9ea2 (patch) | |
tree | be8c155fd73e280daca5df9e852bb4fd3bc7290f | |
parent | dd2247c0995a32f37a348d9f4237e5b7f8520722 (diff) | |
download | ChibiOS-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
-rw-r--r-- | os/lib/include/chmempools.h | 6 |
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.
*
|