Changeset 88dea9d in mainline for kernel/generic/src/interrupt/interrupt.c
- Timestamp:
- 2010-04-17T16:28:49Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 30a5470
- Parents:
- 5ba201d (diff), 95319bd (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/interrupt/interrupt.c
r5ba201d r88dea9d 51 51 #include <print.h> 52 52 #include <symtab.h> 53 #include <proc/thread.h> 53 54 54 55 static struct { … … 91 92 ASSERT(n < IVT_ITEMS); 92 93 94 /* Account user cycles */ 95 if (THREAD) 96 thread_update_accounting(true); 97 93 98 #ifdef CONFIG_UDEBUG 94 99 if (THREAD) THREAD->udebug.uspace_state = istate; … … 104 109 if (THREAD && THREAD->interrupted && istate_from_uspace(istate)) 105 110 thread_exit(); 111 112 if (THREAD) 113 thread_update_accounting(false); 106 114 } 107 115
Note:
See TracChangeset
for help on using the changeset viewer.