Documentation related fixes.

git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2226 35acf78f-673a-0410-8e92-d51de3d6d3f4
master
gdisirio 2010-10-03 09:16:09 +00:00
parent 1b56dd572e
commit 760d9accab
2 changed files with 2 additions and 11 deletions

View File

@ -61,7 +61,6 @@ typedef uint32_t stkalign_t;
*/ */
typedef void *regarm_t; typedef void *regarm_t;
#if !defined(__DOXYGEN__)
/** /**
* @brief Interrupt saved context. * @brief Interrupt saved context.
* @details This structure represents the stack frame saved during a * @details This structure represents the stack frame saved during a
@ -77,9 +76,7 @@ struct extctx {
regarm_t r12; regarm_t r12;
regarm_t lr_usr; regarm_t lr_usr;
}; };
#endif
#if !defined(__DOXYGEN__)
/** /**
* @brief System saved context. * @brief System saved context.
* @details This structure represents the inner stack frame during a context * @details This structure represents the inner stack frame during a context
@ -98,19 +95,15 @@ struct intctx {
regarm_t r11; regarm_t r11;
regarm_t lr; regarm_t lr;
}; };
#endif
#if !defined(__DOXYGEN__)
/** /**
* @brief Platform dependent part of the @p Thread structure. * @brief Platform dependent part of the @p Thread structure.
* @details In the ARM7 port this structure just holds a pointer to the * @details In this port the structure just holds a pointer to the @p intctx
* @p intctx structure representing the stack pointer at the time * structure representing the stack pointer at context switch time.
* of the context switch.
*/ */
struct context { struct context {
struct intctx *r13; struct intctx *r13;
}; };
#endif
/** /**
* @brief Platform dependent part of the @p chThdInit() API. * @brief Platform dependent part of the @p chThdInit() API.

View File

@ -282,7 +282,6 @@ struct intctx {
}; };
#endif #endif
#if !defined(__DOXYGEN__)
/** /**
* @brief Platform dependent part of the @p Thread structure. * @brief Platform dependent part of the @p Thread structure.
* @details In this port the structure just holds a pointer to the @p intctx * @details In this port the structure just holds a pointer to the @p intctx
@ -291,7 +290,6 @@ struct intctx {
struct context { struct context {
struct intctx *r13; struct intctx *r13;
}; };
#endif
/** /**
* @brief Enforces a correct alignment for a stack area size value. * @brief Enforces a correct alignment for a stack area size value.