Changeset 435 for trunk/hal/tsar_mips32/core/hal_interrupt.c
- Timestamp:
- Feb 20, 2018, 5:32:17 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_interrupt.c
r432 r435 32 32 void hal_do_interrupt() 33 33 { 34 35 irq_dmsg("\n[DBG] %s : core[%x,%d] enter at cycle %d\n", 36 __FUNCTION__ , local_cxy , CURRENT_THREAD->core->lid , hal_time_stamp() ); 37 38 // As ALMOS-MKH does not define a generic interrupt handler, 39 // we directly access the local TSAR ICU to call the relevant ISR 34 // ALMOS-MKH does not define a generic interrupt handler. 35 // we call the specific TSAR IRQ handler to select the relevant ISR 40 36 soclib_pic_irq_handler(); 41 42 irq_dmsg("\n[DBG] %s : core[%x,%d] exit at cycle %d\n",43 __FUNCTION__ , local_cxy , CURRENT_THREAD->core->lid , hal_time_stamp() );44 45 37 }
Note: See TracChangeset
for help on using the changeset viewer.