Documentation fixes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12176 110e8d01-0319-4d1e-a829-52ad28d1bb01
This commit is contained in:
Giovanni Di Sirio 2018-07-15 11:52:28 +00:00
parent dd2247c099
commit 4b3321c4db
1 changed files with 2 additions and 4 deletions

View File

@ -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.
*