Changes in kernel/generic/src/interrupt/interrupt.c [a000878c:07640dfd] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/interrupt/interrupt.c
ra000878c r07640dfd 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.