9
0
Fork 0

Fix a compile error when CONFIG_ARCH_INTERRUPTSTACK is turned on for Cortex-M*

git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@4134 7fd9a85b-ad96-42d3-883c-3090e2eb8679
This commit is contained in:
patacongo 2011-12-04 23:42:38 +00:00
parent 5fc7d5951f
commit d376ca9a02
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ extern uint32_t g_heapbase;
#if CONFIG_ARCH_INTERRUPTSTACK > 3
#if defined(CONFIG_ARCH_CORTEXM3) || defined(CONFIG_ARCH_CORTEXM4)
extern void g_intstackbase;
extern uint32_t g_intstackbase;
# else
extern uint32_t g_userstack;
# endif