aboutsummaryrefslogtreecommitdiffstats
path: root/src/include/scheduler.h
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-11 11:28:32 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-11 11:28:32 +0000
commit382151cf63ff5ef3144fc38bb87490d33da7b2d3 (patch)
treea1ebbe48fe92cc5fa9f6a0493812269820747b9d /src/include/scheduler.h
parent36c9110259212470667c7cc95bb99ca577945d87 (diff)
downloadChibiOS-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/scheduler.h')
-rw-r--r--src/include/scheduler.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/scheduler.h b/src/include/scheduler.h
index f4dac7d16..7d2f95beb 100644
--- a/src/include/scheduler.h
+++ b/src/include/scheduler.h
@@ -25,7 +25,7 @@
#ifndef _SCHEDULER_H_
#define _SCHEDULER_H_
-/** Normal \p chSchReadyI() message. */
+/** Normal @p chSchReadyI() message. */
#define RDY_OK 0
/** Returned when the thread was made ready because of a timeout. */
#define RDY_TIMEOUT -1
@@ -57,9 +57,9 @@
* @extends ThreadsQueue
*/
typedef struct {
- /** Next \p Thread in the ready list.*/
+ /** Next @p Thread in the ready list.*/
Thread *p_next;
- /** Previous \p Thread in the ready list.*/
+ /** Previous @p Thread in the ready list.*/
Thread *p_prev;
/* End of the fields shared with the ThreadsQueue structure. */
/** The thread priority.*/