Changes in kernel/generic/src/interrupt/interrupt.c [a000878c:0d21b53] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/interrupt/interrupt.c
ra000878c r0d21b53 114 114 115 115 /** Terminate thread and task if exception came from userspace. */ 116 void fault_if_from_uspace(istate_t *istate, c onst char *fmt, ...)116 void fault_if_from_uspace(istate_t *istate, char *fmt, ...) 117 117 { 118 118 task_t *task = TASK; … … 162 162 #if (IVT_ITEMS > 0) 163 163 unsigned int i; 164 char *symbol; 164 165 165 166 spinlock_lock(&exctbl_lock); … … 176 177 177 178 for (i = 0; i < IVT_ITEMS; i++) { 178 const char *symbol = symtab_fmt_name_lookup((unative_t) exc_table[i].f);179 symbol = symtab_fmt_name_lookup((unative_t) exc_table[i].f); 179 180 180 181 #ifdef __32_BITS__
Note:
See TracChangeset
for help on using the changeset viewer.