Changeset 3ff2b54 in mainline for kernel/generic/src/interrupt/interrupt.c
- Timestamp:
- 2008-11-22T11:26:53Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7e6c9eb
- Parents:
- 6571b78
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/interrupt/interrupt.c
r6571b78 r3ff2b54 87 87 { 88 88 ASSERT(n < IVT_ITEMS); 89 90 #ifdef CONFIG_UDEBUG 91 if (THREAD) THREAD->udebug.uspace_state = istate; 92 #endif 89 93 90 94 exc_table[n].f(n + IVT_FIRST, istate); 95 96 #ifdef CONFIG_UDEBUG 97 if (THREAD) THREAD->udebug.uspace_state = NULL; 98 #endif 99 91 100 /* This is a safe place to exit exiting thread */ 92 101 if (THREAD && THREAD->interrupted && istate_from_uspace(istate))
Note:
See TracChangeset
for help on using the changeset viewer.