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.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/lists.h b/src/include/lists.h
index 5f4a73d67..10b5d7823 100644
--- a/src/include/lists.h
+++ b/src/include/lists.h
@@ -36,9 +36,9 @@ typedef struct Thread Thread;
* @extends ThreadsList
*/
typedef struct {
- /** First \p Thread in the queue, or \p ThreadQueue when empty. */
+ /** 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. */
+ /** Last @p Thread in the queue, or @p ThreadQueue when empty. */
Thread *p_prev;
} ThreadsQueue;
@@ -46,7 +46,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. */
+ /** Last pushed @p Thread on the stack list, or @p ThreadList when empty. */
Thread *p_next;
} ThreadsList;