aboutsummaryrefslogtreecommitdiffstats
path: root/src/chsys.c
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/chsys.c
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/chsys.c')
-rw-r--r--src/chsys.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/chsys.c b/src/chsys.c
index c1666095e..45ce8b0f8 100644
--- a/src/chsys.c
+++ b/src/chsys.c
@@ -45,9 +45,9 @@ static void idle_thread(void *p) {
/**
* ChibiOS/RT initialization. After executing this function the current
* instructions stream becomes the main thread.
- * @note Interrupts should be still disabled when \p chSysInit() is invoked
+ * @note Interrupts should be still disabled when @p chSysInit() is invoked
* and are internally enabled.
- * @note The main thread is created with priority \p NORMALPRIO.
+ * @note The main thread is created with priority @p NORMALPRIO.
*/
void chSysInit(void) {
static Thread mainthread;
@@ -81,7 +81,7 @@ void chSysInit(void) {
* it when the quantum is used up. Increments system time and manages the
* timers.
* @note The frequency of the timer determines the system tick granularity and,
- * together with the \p CH_TIME_QUANTUM macro, the round robin interval.
+ * together with the @p CH_TIME_QUANTUM macro, the round robin interval.
*/
void chSysTimerHandlerI(void) {