aboutsummaryrefslogtreecommitdiffstats
path: root/src/templates
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-22 15:37:29 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-01-22 15:37:29 +0000
commitbae98eb8d8e752aa084a2438aa99d5f72e3f1247 (patch)
treef0e74570eced59079300f2371ac02bfdf5c30120 /src/templates
parentb094fe9dc11e9aa1f017cb65766a16ecd42432d2 (diff)
downloadChibiOS-bae98eb8d8e752aa084a2438aa99d5f72e3f1247.tar.gz
ChibiOS-bae98eb8d8e752aa084a2438aa99d5f72e3f1247.tar.bz2
ChibiOS-bae98eb8d8e752aa084a2438aa99d5f72e3f1247.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@666 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/templates')
-rw-r--r--src/templates/chcore.h17
1 files changed, 9 insertions, 8 deletions
diff --git a/src/templates/chcore.h b/src/templates/chcore.h
index 97f3f05e7..8c7ed97ef 100644
--- a/src/templates/chcore.h
+++ b/src/templates/chcore.h
@@ -38,24 +38,25 @@
typedef uint8_t stkalign_t;
/**
- * Interrupt saved context.
- * This structure represents the stack frame saved during a preemption-capable
- * interrupt handler.
+ * @brief Interrupt saved context.
+ * @details This structure represents the stack frame saved during a
+ * preemption-capable interrupt handler.
*/
struct extctx {
};
/**
- * System saved context.
- * This structure represents the inner stack frame during a context switching.
+ * @brief System saved context.
+ * @details This structure represents the inner stack frame during a context
+ * switching.
*/
struct intctx {
};
/**
- * Platform dependent part of the @p Thread structure.
- * This structure usually contains just the saved stack pointer defined as a
- * pointer to a @p intctx structure.
+ * @brief Platform dependent part of the @p Thread structure.
+ * @details This structure usually contains just the saved stack pointer
+ * defined as a pointer to a @p intctx structure.
*/
struct context {
struct intctx *sp;