diff options
Diffstat (limited to 'os/kernel/include')
-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
*/
|