Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 1596 → Rev 1597

/kernel/trunk/generic/src/interrupt/interrupt.c
85,6 → 85,9
ASSERT(n < IVT_ITEMS);
exc_table[n].f(n + IVT_FIRST, istate);
/* This is a safe place to exit exiting thread */
if (THREAD && THREAD->interrupted && istate_from_uspace(istate))
thread_exit();
}
 
/** Default 'null' exception handler */