diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-20 07:24:12 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2013-07-20 07:24:12 +0000 |
commit | 390ed322cb8f40cb9250021cde5f48acb928d291 (patch) | |
tree | 1dc550fc749284146c42417ff1d5d40ac1823d5f /os/kernel/include/chthreads.h | |
parent | 25ddb1c801f06a3be7171e20dcfd46d11a75f112 (diff) | |
download | ChibiOS-390ed322cb8f40cb9250021cde5f48acb928d291.tar.gz ChibiOS-390ed322cb8f40cb9250021cde5f48acb928d291.tar.bz2 ChibiOS-390ed322cb8f40cb9250021cde5f48acb928d291.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/kernel_3_dev@6001 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/include/chthreads.h')
-rw-r--r-- | os/kernel/include/chthreads.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/kernel/include/chthreads.h b/os/kernel/include/chthreads.h index c46103faf..ef5a0dbe9 100644 --- a/os/kernel/include/chthreads.h +++ b/os/kernel/include/chthreads.h @@ -302,8 +302,8 @@ typedef msg_t (*tfunc_t)(void *); * @note Can be invoked in any context.
*
* @param[in] tp pointer to the thread
- * @retval TRUE thread terminated.
- * @retval FALSE thread not terminated.
+ * @retval true thread terminated.
+ * @retval false thread not terminated.
*
* @special
*/
@@ -313,8 +313,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 true termination request pending.
+ * @retval false termination request not pending.
*
* @special
*/
|