aboutsummaryrefslogtreecommitdiffstats
path: root/os/ports/GCC/ARMCMx
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-03-30 20:20:55 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-03-30 20:20:55 +0000
commit4dd0b48a776bdc8ce697fe170a98ef43fbbcfc74 (patch)
treef241dd35e10d6764f2d2ac0f94d2a4c9435d7dcd /os/ports/GCC/ARMCMx
parent652029259b246dc5dff906a0b945b29f5e72690e (diff)
downloadChibiOS-4dd0b48a776bdc8ce697fe170a98ef43fbbcfc74.tar.gz
ChibiOS-4dd0b48a776bdc8ce697fe170a98ef43fbbcfc74.tar.bz2
ChibiOS-4dd0b48a776bdc8ce697fe170a98ef43fbbcfc74.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1817 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/ports/GCC/ARMCMx')
-rw-r--r--os/ports/GCC/ARMCMx/chcore.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/os/ports/GCC/ARMCMx/chcore.h b/os/ports/GCC/ARMCMx/chcore.h
index e318eec57..57183e162 100644
--- a/os/ports/GCC/ARMCMx/chcore.h
+++ b/os/ports/GCC/ARMCMx/chcore.h
@@ -287,10 +287,11 @@ struct context {
* This value can be zero on those architecture where there is a
* separate interrupt stack and the stack space between @p intctx and
* @p extctx is known to be zero.
- * @note This port requires no extra stack space for interrupt handling.
+ * @note This port requires some extra stack space for interrupt handling
+ * representing the frame of the function @p chSchDoRescheduleI().
*/
#ifndef INT_REQUIRED_STACK
-#define INT_REQUIRED_STACK 0
+#define INT_REQUIRED_STACK 8
#endif
/**