diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-12-30 14:26:12 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-12-30 14:26:12 +0000 |
commit | c93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f (patch) | |
tree | a910a8df0b4025774c0d7dbee760232f25a2f8b5 /src/chsem.c | |
parent | 6025b723ac3bc412d732b0ee632c418550779992 (diff) | |
download | ChibiOS-c93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f.tar.gz ChibiOS-c93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f.tar.bz2 ChibiOS-c93c50fbc4034eb16bd1b53dc2e76a14bfa7b22f.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@564 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/chsem.c')
-rw-r--r-- | src/chsem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/chsem.c b/src/chsem.c index 1ec852a98..d29e97268 100644 --- a/src/chsem.c +++ b/src/chsem.c @@ -118,8 +118,8 @@ msg_t chSemWaitS(Semaphore *sp) { * @param time the number of ticks before the operation fails
* @retval RDY_OK if the semaphore was signaled or not taken.
* @retval RDY_RESET if the semaphore was reset using \p chSemReset().
- * @retval RDY_TIMEOUT if the semaphore was not signaled or reset within the specified
- * timeout.
+ * @retval RDY_TIMEOUT if the semaphore was not signaled or reset within the
+ * specified timeout.
* @note The function is available only if the \p CH_USE_SEMAPHORES_TIMEOUT
* option is enabled in \p chconf.h.
*/
|