diff options
Diffstat (limited to 'src/include/lists.h')
-rw-r--r-- | src/include/lists.h | 5 |
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;
|