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