- Timestamp:
- Jan 4, 2018, 10:05:47 AM (7 years ago)
- Location:
- trunk/hal/tsar_mips32/core
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_exception.c
r409 r416 431 431 { 432 432 hal_exception_dump( this , uzone , error ); 433 panic( " KERNEL_PANIC for thread %x in process %x on core [%x,%d]/n",433 panic( "for thread %x in process %x on core [%x,%d]", 434 434 this->trdid , this->process->pid , local_cxy , this->core->lid ); 435 435 } -
trunk/hal/tsar_mips32/core/hal_syscall.c
r408 r416 56 56 arg3 = enter_uzone[UZ_A3]; 57 57 58 syscall_dmsg("\n[DBG] %s : core[%x,%d] enters for %s / &uzone %x / cycle %d \n",59 __FUNCTION__, local_cxy, this->core->lid,60 syscall_str(service_num) , enter_uzone , (uint32_t)hal_get_cycles() );61 62 58 // call architecture independant syscall handler 63 59 retval = do_syscall( this, … … 79 75 exit_uzone[UZ_EPC] += 4; 80 76 81 syscall_dmsg("\n[DBG] %s : core[%x,%d] exit from %s / &uzone %x / cycle %d \n",82 __FUNCTION__, local_cxy, this->core->lid,83 syscall_str(service_num) , exit_uzone , (uint32_t)hal_get_cycles() );84 85 77 }
Note: See TracChangeset
for help on using the changeset viewer.