git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@180 35acf78f-673a-0410-8e92-d51de3d6d3f4

This commit is contained in:
gdisirio 2008-01-18 08:53:10 +00:00
parent 8fb01ac783
commit 1aecb14913
1 changed files with 2 additions and 2 deletions

View File

@ -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;