diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-11 11:28:32 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-11 11:28:32 +0000 |
commit | 382151cf63ff5ef3144fc38bb87490d33da7b2d3 (patch) | |
tree | a1ebbe48fe92cc5fa9f6a0493812269820747b9d /src/chmempools.c | |
parent | 36c9110259212470667c7cc95bb99ca577945d87 (diff) | |
download | ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.tar.gz ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.tar.bz2 ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@619 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chmempools.c')
-rw-r--r-- | src/chmempools.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/chmempools.c b/src/chmempools.c index dad37aeb4..fac9db851 100644 --- a/src/chmempools.c +++ b/src/chmempools.c @@ -28,7 +28,7 @@ /**
* Initializes an empty memory pool.
- * @param mp pointer to a \p MemoryPool structure
+ * @param mp pointer to a @p MemoryPool structure
* @param size the size of the objects contained in this memory pool
*/
void chPoolInit(MemoryPool *mp, size_t size) {
@@ -42,7 +42,7 @@ void chPoolInit(MemoryPool *mp, size_t size) { /**
* Allocates an object from a memory pool.
- * @param mp pointer to a \p MemoryPool structure
+ * @param mp pointer to a @p MemoryPool structure
* @return The pointer to the allocated object.
* @retval NULL if pool is empty.
*/
@@ -59,7 +59,7 @@ void *chPoolAllocI(MemoryPool *mp) { /**
* Allocates an object from a memory pool.
- * @param mp pointer to a \p MemoryPool structure
+ * @param mp pointer to a @p MemoryPool structure
* @return The pointer to the allocated object.
* @retval NULL if pool is empty.
*/
@@ -74,7 +74,7 @@ void *chPoolAlloc(MemoryPool *mp) { /**
* Releases (or adds) an object into (to) a memory pool.
- * @param mp pointer to a \p MemoryPool structure
+ * @param mp pointer to a @p MemoryPool structure
* @param objp the pointer to the object to be released or added
* @note the object is assumed to be of the right size for the specified
* memory pool.
@@ -91,7 +91,7 @@ void chPoolFreeI(MemoryPool *mp, void *objp) { /**
* Releases (or adds) an object into (to) a memory pool.
- * @param mp pointer to a \p MemoryPool structure
+ * @param mp pointer to a @p MemoryPool structure
* @param objp the pointer to the object to be released or added
* @note the object is assumed to be of the right size for the specified
* memory pool.
|