aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/PPC
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-03 09:46:31 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-10-03 09:46:31 +0000
commite00af9a519d9b147b0082784ac7ca0d0bea18d8f (patch)
tree3857d62b1012a4cbcc7353636d565705ae4f5d4d /os/ports/GCC/PPC
parent90f791c2b61b0691ca8faede3b855641f258a87a (diff)
downloadChibiOS-e00af9a519d9b147b0082784ac7ca0d0bea18d8f.tar.gz
ChibiOS-e00af9a519d9b147b0082784ac7ca0d0bea18d8f.tar.bz2
ChibiOS-e00af9a519d9b147b0082784ac7ca0d0bea18d8f.zip
Documentation related fixes.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2228 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/PPC')
-rw-r--r--os/ports/GCC/PPC/chcore.h8
1 files changed, 1 insertions, 7 deletions
diff --git a/os/ports/GCC/PPC/chcore.h b/os/ports/GCC/PPC/chcore.h
index 162469a1b..b10b2ae62 100644
--- a/os/ports/GCC/PPC/chcore.h
+++ b/os/ports/GCC/PPC/chcore.h
@@ -93,7 +93,6 @@ struct eabi_frame {
regppc_t shole; /**< Stack hole for LR storage. */
};
-#if !defined(__DOXYGEN__)
/**
* @brief Interrupt saved context.
* @details This structure represents the stack frame saved during a
@@ -125,10 +124,8 @@ struct extctx {
regppc_t r12;
regppc_t padding;
};
-#endif
-#if !defined(__DOXYGEN__)
-/**
+ /**
* @brief System saved context.
* @details This structure represents the inner stack frame during a context
* switching.
@@ -159,9 +156,7 @@ struct intctx {
regppc_t r31;
regppc_t padding;
};
-#endif
-#if !defined(__DOXYGEN__)
/**
* @brief Platform dependent part of the @p Thread structure.
* @details This structure usually contains just the saved stack pointer
@@ -170,7 +165,6 @@ struct intctx {
struct context {
struct intctx *sp;
};
-#endif
/**
* @brief Platform dependent part of the @p chThdInit() API.