git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1817 35acf78f-673a-0410-8e92-d51de3d6d3f4

master
gdisirio 2010-03-30 20:20:55 +00:00
parent 652029259b
commit 4dd0b48a77
1 changed files with 3 additions and 2 deletions

View File

@ -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
/**