aboutsummaryrefslogtreecommitdiffstats
path: root/os/kernel
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-01-03 09:52:04 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2013-01-03 09:52:04 +0000
commit865722b1be24a2672ba271d78bd4a11b20edb84a (patch)
tree5ae1b1c347ca55f6d2adae0c0162dc3a4f7eae69 /os/kernel
parent3edb2cf5532bf7c1c43cc2a839d3d0a15e6d7a6a (diff)
downloadChibiOS-865722b1be24a2672ba271d78bd4a11b20edb84a.tar.gz
ChibiOS-865722b1be24a2672ba271d78bd4a11b20edb84a.tar.bz2
ChibiOS-865722b1be24a2672ba271d78bd4a11b20edb84a.zip
Added queues and core.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@5021 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel')
-rw-r--r--os/kernel/include/chqueues.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/os/kernel/include/chqueues.h b/os/kernel/include/chqueues.h
index ff90d9e5f..39951e553 100644
--- a/os/kernel/include/chqueues.h
+++ b/os/kernel/include/chqueues.h
@@ -153,8 +153,8 @@ typedef GenericQueue InputQueue;
*
* @param[in] iqp pointer to an @p InputQueue structure.
* @return The queue status.
- * @retval FALSE The queue is not empty.
- * @retval TRUE The queue is empty.
+ * @retval FALSE if the queue is not empty.
+ * @retval TRUE if the queue is empty.
*
* @iclass
*/
@@ -165,8 +165,8 @@ typedef GenericQueue InputQueue;
*
* @param[in] iqp pointer to an @p InputQueue structure.
* @return The queue status.
- * @retval FALSE The queue is not full.
- * @retval TRUE The queue is full.
+ * @retval FALSE if the queue is not full.
+ * @retval TRUE if the queue is full.
*
* @iclass
*/
@@ -268,8 +268,8 @@ typedef GenericQueue OutputQueue;
*
* @param[in] oqp pointer to an @p OutputQueue structure.
* @return The queue status.
- * @retval FALSE The queue is not empty.
- * @retval TRUE The queue is empty.
+ * @retval FALSE if the queue is not empty.
+ * @retval TRUE if the queue is empty.
*
* @iclass
*/
@@ -281,8 +281,8 @@ typedef GenericQueue OutputQueue;
*
* @param[in] oqp pointer to an @p OutputQueue structure.
* @return The queue status.
- * @retval FALSE The queue is not full.
- * @retval TRUE The queue is full.
+ * @retval FALSE if the queue is not full.
+ * @retval TRUE if the queue is full.
*
* @iclass
*/