diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-03-22 11:43:45 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2014-03-22 11:43:45 +0000 |
commit | 35a45e50136c48754378976fbb844adeb9f067bc (patch) | |
tree | 079345ff260c7fd4ee2b6deda0650de9bc111f83 /os/kernel/include/chthreads.h | |
parent | dc5d7d2592a63ef533c77098b8b02425ece155b7 (diff) | |
download | ChibiOS-35a45e50136c48754378976fbb844adeb9f067bc.tar.gz ChibiOS-35a45e50136c48754378976fbb844adeb9f067bc.tar.bz2 ChibiOS-35a45e50136c48754378976fbb844adeb9f067bc.zip |
Fixed bug #478.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@6801 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/chthreads.h')
-rw-r--r-- | os/kernel/include/chthreads.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/kernel/include/chthreads.h b/os/kernel/include/chthreads.h index 77f72caca..07cdd23ff 100644 --- a/os/kernel/include/chthreads.h +++ b/os/kernel/include/chthreads.h @@ -277,8 +277,8 @@ typedef msg_t (*tfunc_t)(void *); * @brief Verifies if the current thread has a termination request pending.
* @note Can be invoked in any context.
*
- * @retval TRUE termination request pending.
- * @retval FALSE termination request not pending.
+ * @retval 0 termination request not pending.
+ * @retval !0 termination request pending.
*
* @special
*/
|