Changeset 407 for trunk/hal/tsar_mips32/core/hal_syscall.c
- Timestamp:
- Nov 7, 2017, 3:08:12 PM (7 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_syscall.c
r406 r407 26 26 #include <do_syscall.h> 27 27 #include <thread.h> 28 #include <printk.h> 28 29 #include <hal_kentry.h> 29 30 … … 33 34 reg_t * regs_tbl ) 34 35 { 36 37 #if(CONFIG_SYSCALL_DEBUG & 0x1) 38 printk("\n[DBG] %s : core[%x,%d] enter at cycle %d\n", 39 __FUNCTION__ , local_cxy , this->core->lid , hal_time_stamp() ); 40 #endif 41 35 42 register reg_t arg0; 36 43 register reg_t arg1; … … 58 65 regs_tbl[UZ_V1] = this->errno; 59 66 regs_tbl[UZ_EPC] += 4; 67 68 #if(CONFIG_SYSCALL_DEBUG & 0x1) 69 printk("\n[DBG] %s : core[%x,%d] exit at cycle %d\n", 70 __FUNCTION__ , local_cxy , this->core->lid , hal_time_stamp() ); 71 #endif 72 60 73 }
Note: See TracChangeset
for help on using the changeset viewer.