Changes in kernel/generic/src/interrupt/interrupt.c [07640dfd:a000878c] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/interrupt/interrupt.c
r07640dfd ra000878c 51 51 #include <print.h> 52 52 #include <symtab.h> 53 #include <proc/thread.h>54 53 55 54 static struct { … … 92 91 ASSERT(n < IVT_ITEMS); 93 92 94 /* Account user cycles */95 if (THREAD)96 thread_update_accounting(true);97 98 93 #ifdef CONFIG_UDEBUG 99 94 if (THREAD) THREAD->udebug.uspace_state = istate; … … 109 104 if (THREAD && THREAD->interrupted && istate_from_uspace(istate)) 110 105 thread_exit(); 111 112 if (THREAD)113 thread_update_accounting(false);114 106 } 115 107
Note:
See TracChangeset
for help on using the changeset viewer.