aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-07-29 07:28:09 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2012-07-29 07:28:09 +0000
commit7d892ef699164466cd328bc59a6e7effd8109a85 (patch)
tree343f2f8c0d30b5b5ff3907ae195060bd28811004 /os/kernel
parent09d733a31401bf51ee9d7bef4d9267bd6cf1d75f (diff)
downloadChibiOS-7d892ef699164466cd328bc59a6e7effd8109a85.tar.gz
ChibiOS-7d892ef699164466cd328bc59a6e7effd8109a85.tar.bz2
ChibiOS-7d892ef699164466cd328bc59a6e7effd8109a85.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4486 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel')
-rw-r--r--os/kernel/src/chmboxes.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/os/kernel/src/chmboxes.c b/os/kernel/src/chmboxes.c
index 163f93f20..a9eddb2e9 100644
--- a/os/kernel/src/chmboxes.c
+++ b/os/kernel/src/chmboxes.c
@@ -41,7 +41,7 @@
* If larger messages need to be exchanged then a pointer to a
* structure can be posted in the mailbox but the posting side has
* no predefined way to know when the message has been processed. A
- * possible approach is to allocate memory (from a memory pool as
+ * possible approach is to allocate memory (from a memory pool for
* example) from the posting side and free it on the fetching side.
* Another approach is to set a "done" flag into the structure pointed
* by the message.
@@ -346,7 +346,7 @@ msg_t chMBFetchS(Mailbox *mbp, msg_t *msgp, systime_t time) {
/**
* @brief Retrieves a message from a mailbox.
* @details This variant is non-blocking, the function returns a timeout
- * condition if the queue is full.
+ * condition if the queue is empty.
*
* @param[in] mbp the pointer to an initialized Mailbox object
* @param[out] msgp pointer to a message variable for the received message