aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/lists.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/lists.h')
-rw-r--r--src/include/lists.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/include/lists.h b/src/include/lists.h
index 339c6741c..81b0aa943 100644
--- a/src/include/lists.h
+++ b/src/include/lists.h
@@ -36,10 +36,10 @@ typedef struct Thread Thread;
* @extends ThreadsList
*/
typedef struct {
- /** First @p Thread in the queue, or @p ThreadQueue when empty. */
- Thread *p_next;
- /** Last @p Thread in the queue, or @p ThreadQueue when empty. */
- Thread *p_prev;
+ Thread *p_next; /**< First @p Thread in the queue, or
+ @p ThreadQueue when empty.*/
+ Thread *p_prev; /**< Last @p Thread in the queue, or
+ @p ThreadQueue when empty.*/
} ThreadsQueue;
/**
@@ -47,8 +47,8 @@ typedef struct {
* @details This list behaves like a stack.
*/
typedef struct {
- /** Last pushed @p Thread on the stack list, or @p ThreadList when empty. */
- Thread *p_next;
+ Thread *p_next; /**< Last pushed @p Thread on the stack,
+ or @p ThreadList when empty.*/
} ThreadsList;
/**