aboutsummaryrefslogtreecommitdiffstats
path: root/os/lib/src
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-06-15 09:11:07 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-06-15 09:11:07 +0000
commit7d47d8cf46c4728c277d0971efd7f5a3f7368cec (patch)
tree5a3176c064d83b43eda8e4423d5c74aa987969bf /os/lib/src
parent4a78d17518b55d8c3818f9f6711aff691a8d9298 (diff)
downloadChibiOS-7d47d8cf46c4728c277d0971efd7f5a3f7368cec.tar.gz
ChibiOS-7d47d8cf46c4728c277d0971efd7f5a3f7368cec.tar.bz2
ChibiOS-7d47d8cf46c4728c277d0971efd7f5a3f7368cec.zip
New API added to pools and fifos.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12100 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/lib/src')
-rw-r--r--os/lib/src/chmempools.c18
1 files changed, 0 insertions, 18 deletions
diff --git a/os/lib/src/chmempools.c b/os/lib/src/chmempools.c
index 43078c951..2fcd0cb3b 100644
--- a/os/lib/src/chmempools.c
+++ b/os/lib/src/chmempools.c
@@ -315,24 +315,6 @@ void *chGuardedPoolAllocTimeout(guarded_memory_pool_t *gmp,
* @param[in] gmp pointer to a @p guarded_memory_pool_t structure
* @param[in] objp the pointer to the object to be released
*
- * @iclass
- */
-void chGuardedPoolFreeI(guarded_memory_pool_t *gmp, void *objp) {
-
- chPoolFreeI(&gmp->pool, objp);
- chSemSignalI(&gmp->sem);
-}
-
-/**
- * @brief Releases an object into a guarded memory pool.
- * @pre The guarded memory pool must already be initialized.
- * @pre The freed object must be of the right size for the specified
- * guarded memory pool.
- * @pre The added object must be properly aligned.
- *
- * @param[in] gmp pointer to a @p guarded_memory_pool_t structure
- * @param[in] objp the pointer to the object to be released
- *
* @api
*/
void chGuardedPoolFree(guarded_memory_pool_t *gmp, void *objp) {