Changeset 406 for trunk/hal/tsar_mips32/core/hal_interrupt.c
- Timestamp:
- Aug 29, 2017, 12:03:37 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_interrupt.c
r337 r406 27 27 #include <thread.h> 28 28 #include <printk.h> 29 #include <do_interrupt.h>30 #include <hal_interrupt.h>31 29 #include <soclib_pic.h> 32 30 … … 35 33 reg_t * regs_tbl ) 36 34 { 37 irq_dmsg("\n[ INFO] %s : enter / core[%x,%d] / cycle %d\n",35 irq_dmsg("\n[DMSG] %s : enter / core[%x,%d] / cycle %d\n", 38 36 __FUNCTION__ , local_cxy , this->core->lid , hal_time_stamp() ); 39 40 // update user time41 thread_user_time_update( this );42 37 43 38 // access local ICU to call the relevant ISR 44 39 soclib_pic_irq_handler(); 45 40 46 // update kernel time 47 thread_kernel_time_update( this ); 48 49 irq_dmsg("\n[INFO] %s : exit / core[%x,%d] / cycle %d\n", 41 irq_dmsg("\n[DMSG] %s : exit / core[%x,%d] / cycle %d\n", 50 42 __FUNCTION__ , local_cxy , this->core->lid , hal_time_stamp() ); 51 43 }
Note: See TracChangeset
for help on using the changeset viewer.