From 1aecb14913213565c804dda42322c6fb3136827d Mon Sep 17 00:00:00 2001 From: gdisirio Date: Fri, 18 Jan 2008 08:53:10 +0000 Subject: [PATCH] git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@180 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- src/include/lists.h | 4 ++-- 1 file 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;