diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-07 16:13:25 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-07 16:13:25 +0000 |
commit | e54758e2d3fb3dc5ba5abc093e8063603c5f33fe (patch) | |
tree | 86209beff4f51012144f159c68062d9fa6666e5c /src/chqueues.c | |
parent | d9ff829a71d7b5723206e4923bcab6cbe3f5b715 (diff) | |
download | ChibiOS-e54758e2d3fb3dc5ba5abc093e8063603c5f33fe.tar.gz ChibiOS-e54758e2d3fb3dc5ba5abc093e8063603c5f33fe.tar.bz2 ChibiOS-e54758e2d3fb3dc5ba5abc093e8063603c5f33fe.zip |
Small size optimization to the scheduler timeout code.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@814 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chqueues.c')
-rw-r--r-- | src/chqueues.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/chqueues.c b/src/chqueues.c index 2615d36b7..6dcc61af6 100644 --- a/src/chqueues.c +++ b/src/chqueues.c @@ -123,7 +123,7 @@ msg_t chIQGet(Queue *qp) { * a byte arrives in the queue or the specified time expires.
*
* @param qp pointer to a @p Queue structure
- * @param time the number of ticks before the operation timouts
+ * @param time the number of ticks before the operation timeouts
* @return A byte value from the queue.
* @retval Q_TIMEOUT if the specified time expired.
* @retval Q_RESET if the queue was reset.
|