return from exception handler if E_EXC_SYSCALL is generated

This commit is contained in:
Marko Gucanin 2016-07-06 16:28:47 +02:00
parent 74d04562df
commit 1a1d17143b

View file

@ -354,6 +354,9 @@ exception_handler(uint32 *pu32Stack, eExceptionType eType)
}
#endif
if(eType == E_EXC_SYSCALL)
return;
#if EXCEPTION_STALLS_SYSTEM
while(1) {
}