Changeset 611 for trunk/hal/tsar_mips32/core/hal_exception.c
- Timestamp:
- Jan 9, 2019, 3:02:51 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_exception.c
r610 r611 455 455 else // undefined coprocessor 456 456 { 457 printk("\n[USER_ERROR] in %s for thread %x in process %x\n"457 printk("\n[USER_ERROR] in %s for thread[%x,%x]\n" 458 458 " undefined coprocessor / epc %x\n", 459 __FUNCTION__, this-> trdid, this->process->pid, excPC );459 __FUNCTION__, this->process->pid, this->trdid, excPC ); 460 460 461 461 error = EXCP_USER_ERROR; … … 465 465 case XCODE_OVR: // Arithmetic Overflow : user fatal error 466 466 { 467 printk("\n[USER_ERROR] in %s for thread %x in process %x\n"467 printk("\n[USER_ERROR] in %s for thread[%x,%x]\n" 468 468 " arithmetic overflow / epc %x\n", 469 __FUNCTION__, this-> trdid, this->process->pid, excPC );469 __FUNCTION__, this->process->pid, this->trdid, excPC ); 470 470 471 471 error = EXCP_USER_ERROR; … … 474 474 case XCODE_RI: // Reserved Instruction : user fatal error 475 475 { 476 printk("\n[USER_ERROR] in %s for thread %x in process %x\n"476 printk("\n[USER_ERROR] in %s for thread[%x,%x]\n" 477 477 " reserved instruction / epc %x\n", 478 __FUNCTION__, this-> trdid, this->process->pid, excPC );478 __FUNCTION__, this->process->pid, this->trdid, excPC ); 479 479 480 480 error = EXCP_USER_ERROR; … … 483 483 case XCODE_ADEL: // user fatal error 484 484 { 485 printk("\n[USER_ERROR] in %s for thread %x in process %x\n"485 printk("\n[USER_ERROR] in %s for thread[%x,%x]\n" 486 486 " illegal data load address / epc %x / bad_address %x\n", 487 __FUNCTION__, this-> trdid, this->process->pid, excPC, hal_get_bad_vaddr() );487 __FUNCTION__, this->process->pid, this->trdid, excPC, hal_get_bad_vaddr() ); 488 488 489 489 error = EXCP_USER_ERROR; … … 492 492 case XCODE_ADES: // user fatal error 493 493 { 494 printk("\n[USER_ERROR] in %s for thread %x in process %x\n"494 printk("\n[USER_ERROR] in %s for thread[%x,%x]\n" 495 495 " illegal data store address / epc %x / bad_address %x\n", 496 __FUNCTION__, this-> trdid, this->process->pid, excPC, hal_get_bad_vaddr() );496 __FUNCTION__, this->process->pid, this->trdid, excPC, hal_get_bad_vaddr() ); 497 497 498 498 error = EXCP_USER_ERROR;
Note: See TracChangeset
for help on using the changeset viewer.