aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/PPC
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-03-14 12:15:37 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-03-14 12:15:37 +0000
commite97e0ca7151a4d390bbf804cd6640bf45055a452 (patch)
tree96d52e479ac60c5c7184a9507a329355b7a5c01b /os/ports/GCC/PPC
parentc7837bab2ee164d6bb4fb47948ee5fe33162b449 (diff)
downloadChibiOS-e97e0ca7151a4d390bbf804cd6640bf45055a452.tar.gz
ChibiOS-e97e0ca7151a4d390bbf804cd6640bf45055a452.tar.bz2
ChibiOS-e97e0ca7151a4d390bbf804cd6640bf45055a452.zip
Small documentation related fix in the PPC and STM8 ports.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1741 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/PPC')
-rw-r--r--os/ports/GCC/PPC/chcore.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/os/ports/GCC/PPC/chcore.h b/os/ports/GCC/PPC/chcore.h
index 6cc844013..70f301c45 100644
--- a/os/ports/GCC/PPC/chcore.h
+++ b/os/ports/GCC/PPC/chcore.h
@@ -93,6 +93,7 @@ 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
@@ -124,7 +125,9 @@ 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
@@ -156,7 +159,9 @@ 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
@@ -165,6 +170,7 @@ struct intctx {
struct context {
struct intctx *sp;
};
+#endif
/**
* @brief Platform dependent part of the @p chThdInit() API.