diff options
-rw-r--r-- | src/include/lists.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/lists.h b/src/include/lists.h index 1038cb340..08f574393 100644 --- a/src/include/lists.h +++ b/src/include/lists.h @@ -35,9 +35,9 @@ typedef struct Thread Thread; * Generic threads queue header and element.
*/
typedef struct {
- /** Next \p Thread in the queue, in FIFO order.*/
+ /** First \p Thread in the queue.*/
Thread *p_next;
- /** Last \p Thread in the queue, in FIFO order.*/
+ /** Last \p Thread in the queue.*/
Thread *p_prev;
} ThreadsQueue;
|