Changeset aa85487 in mainline for kernel/generic/src/interrupt/interrupt.c
- Timestamp:
- 2010-03-07T15:11:56Z (15 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- aadf01e
- Parents:
- 2e99277 (diff), 137691a (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
r2e99277 raa85487 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.