diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-11 11:28:32 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-11 11:28:32 +0000 |
commit | 382151cf63ff5ef3144fc38bb87490d33da7b2d3 (patch) | |
tree | a1ebbe48fe92cc5fa9f6a0493812269820747b9d /src/include/lists.h | |
parent | 36c9110259212470667c7cc95bb99ca577945d87 (diff) | |
download | ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.tar.gz ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.tar.bz2 ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@619 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/include/lists.h')
-rw-r--r-- | src/include/lists.h | 6 |
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;
|