From 19ff25ecc7972a39bebaec79180254ab8b83a12d Mon Sep 17 00:00:00 2001 From: Giovanni Di Sirio Date: Tue, 5 Dec 2017 08:26:15 +0000 Subject: Fixed documentation. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11117 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/src/hal_queues.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'os/hal/src/hal_queues.c') diff --git a/os/hal/src/hal_queues.c b/os/hal/src/hal_queues.c index f038b4a55..a12382cab 100644 --- a/os/hal/src/hal_queues.c +++ b/os/hal/src/hal_queues.c @@ -213,8 +213,7 @@ void iqResetI(input_queue_t *iqp) { * @param[in] b the byte value to be written in the queue * @return The operation status. * @retval MSG_OK if the operation has been completed with success. - * @retval MSG_TIMEOUT if the queue is full and the operation cannot be - * completed. + * @retval MSG_TIMEOUT if the queue is full. * * @iclass */ @@ -247,7 +246,7 @@ msg_t iqPutI(input_queue_t *iqp, uint8_t b) { * * @param[in] iqp pointer to an @p input_queue_t structure * @return A byte value from the queue. - * @retval MSG_TIMEOUT if the specified time expired. + * @retval MSG_TIMEOUT if the queue is empty. * @retval MSG_RESET if the queue has been reset. * * @iclass @@ -483,7 +482,7 @@ void oqResetI(output_queue_t *oqp) { * @param[in] b the byte value to be written in the queue * @return The operation status. * @retval MSG_OK if the operation succeeded. - * @retval MSG_TIMEOUT if the specified time expired. + * @retval MSG_TIMEOUT if the queue is full. * @retval MSG_RESET if the queue has been reset. * * @iclass -- cgit v1.2.3