From d4df8d37a6cfea9ecac26ec3995b9a2d779d2599 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 15 Dec 2010 21:05:00 +0000 Subject: [PATCH] Documentation related fixes. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/branches/stable_2.2.x@2481 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/kernel/templates/chcore.h | 2 +- os/ports/GCC/ARM/chcore.h | 2 +- os/ports/GCC/ARMCMx/chcore_v6m.h | 2 +- os/ports/GCC/ARMCMx/chcore_v7m.h | 2 +- os/ports/GCC/AVR/chcore.h | 2 +- os/ports/GCC/MSP430/chcore.h | 2 +- os/ports/GCC/PPC/chcore.h | 2 +- os/ports/GCC/SIMIA32/chcore.h | 2 +- os/ports/RC/STM8/chcore.h | 2 +- os/ports/cosmic/STM8/chcore.h | 2 +- 10 files changed, 10 insertions(+), 10 deletions(-) diff --git a/os/kernel/templates/chcore.h b/os/kernel/templates/chcore.h index e00677340..69c37b24d 100644 --- a/os/kernel/templates/chcore.h +++ b/os/kernel/templates/chcore.h @@ -76,7 +76,7 @@ struct context { }; /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */ diff --git a/os/ports/GCC/ARM/chcore.h b/os/ports/GCC/ARM/chcore.h index 62edefac1..7e0e1e003 100644 --- a/os/ports/GCC/ARM/chcore.h +++ b/os/ports/GCC/ARM/chcore.h @@ -174,7 +174,7 @@ struct context { }; /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */ diff --git a/os/ports/GCC/ARMCMx/chcore_v6m.h b/os/ports/GCC/ARMCMx/chcore_v6m.h index 5f45f581d..70447712c 100644 --- a/os/ports/GCC/ARMCMx/chcore_v6m.h +++ b/os/ports/GCC/ARMCMx/chcore_v6m.h @@ -72,7 +72,7 @@ struct intctx { #endif /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */ diff --git a/os/ports/GCC/ARMCMx/chcore_v7m.h b/os/ports/GCC/ARMCMx/chcore_v7m.h index 2c9dd0952..32b5a1361 100644 --- a/os/ports/GCC/ARMCMx/chcore_v7m.h +++ b/os/ports/GCC/ARMCMx/chcore_v7m.h @@ -60,7 +60,7 @@ struct intctx { #endif /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */ diff --git a/os/ports/GCC/AVR/chcore.h b/os/ports/GCC/AVR/chcore.h index a61b1a279..7f15ba50e 100644 --- a/os/ports/GCC/AVR/chcore.h +++ b/os/ports/GCC/AVR/chcore.h @@ -129,7 +129,7 @@ struct context { }; /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */ diff --git a/os/ports/GCC/MSP430/chcore.h b/os/ports/GCC/MSP430/chcore.h index 4c8a56d65..35d9f71ef 100644 --- a/os/ports/GCC/MSP430/chcore.h +++ b/os/ports/GCC/MSP430/chcore.h @@ -104,7 +104,7 @@ struct context { }; /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */ diff --git a/os/ports/GCC/PPC/chcore.h b/os/ports/GCC/PPC/chcore.h index b10b2ae62..6f45d5a82 100644 --- a/os/ports/GCC/PPC/chcore.h +++ b/os/ports/GCC/PPC/chcore.h @@ -167,7 +167,7 @@ struct context { }; /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */ diff --git a/os/ports/GCC/SIMIA32/chcore.h b/os/ports/GCC/SIMIA32/chcore.h index bfb9c4cb5..87403d90e 100644 --- a/os/ports/GCC/SIMIA32/chcore.h +++ b/os/ports/GCC/SIMIA32/chcore.h @@ -84,7 +84,7 @@ struct context { #define APUSH(p, a) (p) -= sizeof(void *), *(void **)(p) = (void*)(a) /** - * Platform dependent part of the @p chThdInit() API. + * Platform dependent part of the @p chThdCreateI() API. * This code usually setup the context switching frame represented by a * @p intctx structure. */ diff --git a/os/ports/RC/STM8/chcore.h b/os/ports/RC/STM8/chcore.h index b550b20ac..55c5d3ac0 100644 --- a/os/ports/RC/STM8/chcore.h +++ b/os/ports/RC/STM8/chcore.h @@ -127,7 +127,7 @@ struct stm8_startctx { }; /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */ diff --git a/os/ports/cosmic/STM8/chcore.h b/os/ports/cosmic/STM8/chcore.h index ebf13d0ac..f5fde8fb1 100644 --- a/os/ports/cosmic/STM8/chcore.h +++ b/os/ports/cosmic/STM8/chcore.h @@ -125,7 +125,7 @@ struct stm8_startctx { }; /** - * @brief Platform dependent part of the @p chThdInit() API. + * @brief Platform dependent part of the @p chThdCreateI() API. * @details This code usually setup the context switching frame represented * by an @p intctx structure. */