Merge pull request #1768 from mguc/jn516x_exception_handler

JN516x: Exception handler causing infinite loop
This commit is contained in:
Simon Duquennoy 2016-09-05 20:50:35 +02:00 committed by GitHub
commit 042d077784
1 changed files with 4 additions and 0 deletions

View File

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