diff options
Diffstat (limited to 'os/rt/src/chthreads.c')
-rw-r--r-- | os/rt/src/chthreads.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/os/rt/src/chthreads.c b/os/rt/src/chthreads.c index 4d0a641e9..a481cbc34 100644 --- a/os/rt/src/chthreads.c +++ b/os/rt/src/chthreads.c @@ -389,7 +389,7 @@ thread_t *chThdStart(thread_t *tp) { #if (CH_CFG_USE_REGISTRY == TRUE) || defined(__DOXYGEN__)
/**
* @brief Adds a reference to a thread object.
- * @pre The configuration option @p CH_CFG_USE_DYNAMIC must be enabled in
+ * @pre The configuration option @p CH_CFG_USE_REGISTRY must be enabled in
* order to use this function.
*
* @param[in] tp pointer to the thread
@@ -416,7 +416,7 @@ thread_t *chThdAddRef(thread_t *tp) { * from the registry.<br>
* Threads whose counter reaches zero and are still active become
* "detached" and will be removed from registry on termination.
- * @pre The configuration option @p CH_CFG_USE_DYNAMIC must be enabled in
+ * @pre The configuration option @p CH_CFG_USE_REGISTRY must be enabled in
* order to use this function.
* @note Static threads are not affected.
*
|