Changeset f651e80 in mainline for kernel/arch/ia64/src/interrupt.c
- Timestamp:
- 2009-01-08T12:07:38Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 7447572
- Parents:
- c571f42
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia64/src/interrupt.c
rc571f42 rf651e80 187 187 } 188 188 189 fault_if_from_uspace(istate, "General Exception (%s) ", desc);189 fault_if_from_uspace(istate, "General Exception (%s).", desc); 190 190 191 191 dump_interrupted_context(istate); 192 panic("General Exception (%s) \n", desc);192 panic("General Exception (%s).", desc); 193 193 } 194 194 … … 198 198 scheduler_fpu_lazy_request(); 199 199 #else 200 fault_if_from_uspace(istate, "Interruption: %#hx (%s) ",200 fault_if_from_uspace(istate, "Interruption: %#hx (%s).", 201 201 (uint16_t) vector, vector_to_string(vector)); 202 202 dump_interrupted_context(istate); 203 panic("Interruption: %#hx (%s) \n", (uint16_t) vector,203 panic("Interruption: %#hx (%s).", (uint16_t) vector, 204 204 vector_to_string(vector)); 205 205 #endif … … 229 229 void universal_handler(uint64_t vector, istate_t *istate) 230 230 { 231 fault_if_from_uspace(istate, "Interruption: %#hx (%s) ",231 fault_if_from_uspace(istate, "Interruption: %#hx (%s).", 232 232 (uint16_t) vector, vector_to_string(vector)); 233 233 dump_interrupted_context(istate); 234 panic("Interruption: %#hx (%s) \n", (uint16_t) vector,234 panic("Interruption: %#hx (%s).", (uint16_t) vector, 235 235 vector_to_string(vector)); 236 236 } … … 270 270 spinlock_unlock(&irq->lock); 271 271 } else { 272 panic(" \nUnhandled Internal Timer Interrupt (%d)\n",272 panic("Unhandled Internal Timer Interrupt (%d).", 273 273 ivr.vector); 274 274 }
Note:
See TracChangeset
for help on using the changeset viewer.