diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-18 08:53:10 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2008-01-18 08:53:10 +0000 |
commit | 1aecb14913213565c804dda42322c6fb3136827d (patch) | |
tree | 4078811062e4ed609344d73d339920e7226a13ea /src/include | |
parent | 8fb01ac78308d1fdb0efad351a5ffd5f48981a2f (diff) | |
download | ChibiOS-1aecb14913213565c804dda42322c6fb3136827d.tar.gz ChibiOS-1aecb14913213565c804dda42322c6fb3136827d.tar.bz2 ChibiOS-1aecb14913213565c804dda42322c6fb3136827d.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@180 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include')
-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;
|