aboutsummaryrefslogtreecommitdiffstats
path: root/src/chmempools.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/chmempools.c')
-rw-r--r--src/chmempools.c10
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.