Changeset 416 for trunk/hal


Ignore:
Timestamp:
Jan 4, 2018, 10:05:47 AM (6 years ago)
Author:
alain
Message:

Improve sys_exec.

Location:
trunk/hal/tsar_mips32/core
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/hal/tsar_mips32/core/hal_exception.c

    r409 r416  
    431431    {
    432432        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]",
    434434        this->trdid , this->process->pid , local_cxy , this->core->lid );
    435435    }
  • trunk/hal/tsar_mips32/core/hal_syscall.c

    r408 r416  
    5656        arg3        = enter_uzone[UZ_A3];
    5757 
    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 
    6258    // call architecture independant syscall handler
    6359        retval = do_syscall( this,
     
    7975        exit_uzone[UZ_EPC] += 4;
    8076
    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 
    8577}
Note: See TracChangeset for help on using the changeset viewer.