diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-10-17 09:21:59 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-10-17 09:21:59 +0000 |
commit | 34fd822f84d409fa649934251fae01994de7888b (patch) | |
tree | 095f9c11f7aa2e5f2c0b451c1ba15b08d76f5c47 /os/kernel/src/chmemcore.c | |
parent | a7cfbdaf10a03aa10236958bdba38479b301fc4f (diff) | |
download | ChibiOS-34fd822f84d409fa649934251fae01994de7888b.tar.gz ChibiOS-34fd822f84d409fa649934251fae01994de7888b.tar.bz2 ChibiOS-34fd822f84d409fa649934251fae01994de7888b.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1226 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/src/chmemcore.c')
-rw-r--r-- | os/kernel/src/chmemcore.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/kernel/src/chmemcore.c b/os/kernel/src/chmemcore.c index 00e04a2d6..7177fe432 100644 --- a/os/kernel/src/chmemcore.c +++ b/os/kernel/src/chmemcore.c @@ -60,7 +60,7 @@ void core_init(void) { * <code>sizeof(align_t)</code>.
*
*
- * @param[in] the size of the block to be allocated
+ * @param[in] size the size of the block to be allocated
* @return A pointer to the allocated memory block.
* @retval NULL allocation failed, core memory exhausted. */
@@ -79,7 +79,7 @@ void *chCoreAlloc(size_t size) { * type @p align_t so it is not possible to allocate less than
* <code>sizeof(align_t)</code>.
*
- * @param[in] the size of the block to be allocated.
+ * @param[in] size the size of the block to be allocated.
* @return A pointer to the allocated memory block.
* @retval NULL allocation failed, core memory exhausted.
*/
|