aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel/src
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-12-30 13:28:10 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-12-30 13:28:10 +0000
commit320a3f140e693a0d8647fd05ec6d2d4cb10c523a (patch)
tree8ab4b7cb54b76ab6214fc387594a433790f8e30a /os/kernel/src
parenta6c74277befa3b1354aaf4b3bec386eebfdb61f7 (diff)
downloadChibiOS-320a3f140e693a0d8647fd05ec6d2d4cb10c523a.tar.gz
ChibiOS-320a3f140e693a0d8647fd05ec6d2d4cb10c523a.tar.bz2
ChibiOS-320a3f140e693a0d8647fd05ec6d2d4cb10c523a.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1484 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/src')
-rw-r--r--os/kernel/src/chevents.c2
-rw-r--r--os/kernel/src/chmemcore.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/os/kernel/src/chevents.c b/os/kernel/src/chevents.c
index 70cab9d70..64636da66 100644
--- a/os/kernel/src/chevents.c
+++ b/os/kernel/src/chevents.c
@@ -175,7 +175,7 @@ void chEvtBroadcastI(EventSource *esp) {
}
/**
- * @brief Invokes the event handlers associated with a mask.
+ * @brief Invokes the event handlers associated to an event flags mask.
*
* @param[in] mask mask of the events to be dispatched
* @param[in] handlers an array of @p evhandler_t. The array must have size
diff --git a/os/kernel/src/chmemcore.c b/os/kernel/src/chmemcore.c
index 214504df7..65962bde1 100644
--- a/os/kernel/src/chmemcore.c
+++ b/os/kernel/src/chmemcore.c
@@ -50,7 +50,7 @@ void core_init(void) {
}
/**
- * @brief Allocates a block of memory.
+ * @brief Allocates a memory block.
* @details The size of the returned block is aligned to the alignment
* type @p align_t so it is not possible to allocate less than
* <code>sizeof(align_t)</code>.
@@ -70,7 +70,7 @@ void *chCoreAlloc(size_t size) {
}
/**
- * @brief Allocates a block of memory.
+ * @brief Allocates a memory block.
* @details The size of the returned block is aligned to the alignment
* type @p align_t so it is not possible to allocate less than
* <code>sizeof(align_t)</code>.