Add SVC handler to startup and recursive mutexes to the list of test tasks.

This commit is contained in:
Richard Barry 2008-03-23 16:58:34 +00:00
parent 62f9bdef17
commit 85c789dc2a
3 changed files with 23 additions and 4 deletions

View file

@ -43,6 +43,7 @@ static void IntDefaultHandler(void);
extern int main(void);
extern void xPortPendSVHandler(void);
extern void xPortSysTickHandler(void);
extern void vPortSVCHandler( void );
extern void Timer0IntHandler( void );
extern void vEMAC_ISR(void);
@ -78,7 +79,7 @@ void (* const g_pfnVectors[])(void) =
0, // Reserved
0, // Reserved
0, // Reserved
IntDefaultHandler, // SVCall handler
vPortSVCHandler, // SVCall handler
IntDefaultHandler, // Debug monitor handler
0, // Reserved
xPortPendSVHandler, // The PendSV handler