diff options
Diffstat (limited to 'src/chlists.c')
-rw-r--r-- | src/chlists.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/chlists.c b/src/chlists.c index 24ceb4cc1..8d191fc12 100644 --- a/src/chlists.c +++ b/src/chlists.c @@ -92,9 +92,11 @@ Thread *lifo_remove(ThreadsQueue *tqp) { }
/**
- * @brief Removes a Thread from a FIFO list and returns it.
+ * @brief Removes a Thread from a queue and returns it.
+ * @details The thread is removed from the queue regardless of its relative
+ * position and regardless the used insertion method.
*
- * @param[in] tp the pointer to the thread to be removed from the list
+ * @param[in] tp the pointer to the thread to be removed from the queue
* @return The removed thread pointer.
* @note This function is @b not an API.
*/
|