aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/lists.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-07-26 09:25:11 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2008-07-26 09:25:11 +0000
commit69f9642bf44e6e3de680b07a22a290b9219ab47d (patch)
tree260cffa032b2d796e8bbabfa172d6c0c50ffd2b4 /src/include/lists.h
parent868866157762bc5ad7644fcaa45111ecf6ed1899 (diff)
downloadChibiOS-69f9642bf44e6e3de680b07a22a290b9219ab47d.tar.gz
ChibiOS-69f9642bf44e6e3de680b07a22a290b9219ab47d.tar.bz2
ChibiOS-69f9642bf44e6e3de680b07a22a290b9219ab47d.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@359 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/lists.h')
-rw-r--r--src/include/lists.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/lists.h b/src/include/lists.h
index 08f574393..d98892600 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 {
- /** First \p Thread in the queue.*/
+ /** First \p Thread in the queue, or \p ThreadQueue when empty. */
Thread *p_next;
- /** Last \p Thread in the queue.*/
+ /** Last \p Thread in the queue, or \p ThreadQueue when empty. */
Thread *p_prev;
} ThreadsQueue;
@@ -45,6 +45,7 @@ typedef struct {
* Generic threads single link list, it works like a stack.
*/
typedef struct {
+ /** Last pushed \p Thread on the stack list, or \p ThreadList when empty. */
Thread *p_next;
} ThreadsList;