aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-03 09:16:09 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-03 09:16:09 +0000
commit760d9accabfc58e727d44233e3a54f7fd210ff87 (patch)
tree9204c19aea1be2b0afb620bb30328a1783369aff /os/ports
parent1b56dd572e01e2460c149ac6835db7bdf175b305 (diff)
downloadChibiOS-760d9accabfc58e727d44233e3a54f7fd210ff87.tar.gz
ChibiOS-760d9accabfc58e727d44233e3a54f7fd210ff87.tar.bz2
ChibiOS-760d9accabfc58e727d44233e3a54f7fd210ff87.zip
Documentation related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2226 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports')
-rw-r--r--os/ports/GCC/ARM7/chcore.h11
-rw-r--r--os/ports/GCC/ARMCMx/chcore.h2
2 files changed, 2 insertions, 11 deletions
diff --git a/os/ports/GCC/ARM7/chcore.h b/os/ports/GCC/ARM7/chcore.h
index 22fbf2137..cd88cf0cc 100644
--- a/os/ports/GCC/ARM7/chcore.h
+++ b/os/ports/GCC/ARM7/chcore.h
@@ -61,7 +61,6 @@ typedef uint32_t stkalign_t;
*/
typedef void *regarm_t;
-#if !defined(__DOXYGEN__)
/**
* @brief Interrupt saved context.
* @details This structure represents the stack frame saved during a
@@ -77,9 +76,7 @@ struct extctx {
regarm_t r12;
regarm_t lr_usr;
};
-#endif
-#if !defined(__DOXYGEN__)
/**
* @brief System saved context.
* @details This structure represents the inner stack frame during a context
@@ -98,19 +95,15 @@ struct intctx {
regarm_t r11;
regarm_t lr;
};
-#endif
-#if !defined(__DOXYGEN__)
/**
* @brief Platform dependent part of the @p Thread structure.
- * @details In the ARM7 port this structure just holds a pointer to the
- * @p intctx structure representing the stack pointer at the time
- * of the context switch.
+ * @details In this port the structure just holds a pointer to the @p intctx
+ * structure representing the stack pointer at context switch time.
*/
struct context {
struct intctx *r13;
};
-#endif
/**
* @brief Platform dependent part of the @p chThdInit() API.
diff --git a/os/ports/GCC/ARMCMx/chcore.h b/os/ports/GCC/ARMCMx/chcore.h
index 3581a6dea..db02d6bc1 100644
--- a/os/ports/GCC/ARMCMx/chcore.h
+++ b/os/ports/GCC/ARMCMx/chcore.h
@@ -282,7 +282,6 @@ struct intctx {
};
#endif
-#if !defined(__DOXYGEN__)
/**
* @brief Platform dependent part of the @p Thread structure.
* @details In this port the structure just holds a pointer to the @p intctx
@@ -291,7 +290,6 @@ struct intctx {
struct context {
struct intctx *r13;
};
-#endif
/**
* @brief Enforces a correct alignment for a stack area size value.