Changeset 457 for trunk/hal/tsar_mips32/core/hal_syscall.c
- Timestamp:
- Aug 2, 2018, 11:47:13 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/hal/tsar_mips32/core/hal_syscall.c
r425 r457 22 22 */ 23 23 24 #include <hal_ types.h>24 #include <hal_kernel_types.h> 25 25 #include <hal_syscall.h> 26 26 #include <do_syscall.h> … … 48 48 enter_uzone = (uint32_t *)this->uzone_current; 49 49 50 //printk("\n@@@ enter %s : thread = %x / enter_uzone = %x / EPC = %x\n",51 //__FUNCTION__ , this , enter_uzone , enter_uzone[UZ_EPC] );52 53 50 // get syscall arguments from uzone 54 51 service_num = enter_uzone[UZ_V0]; … … 71 68 exit_uzone = (uint32_t *)this->uzone_current; 72 69 73 //printk("\n@@@ exit %s : thread = %x / exit_uzone = %x / EPC = %x\n",74 //__FUNCTION__ , this , exit_uzone , exit_uzone[UZ_EPC] );75 76 70 // set return value to uzone 77 71 exit_uzone[UZ_V0] = retval;
Note: See TracChangeset
for help on using the changeset viewer.