Changeset 635 for trunk/kernel/syscalls/sys_sem.c
- Timestamp:
 - Jun 26, 2019, 11:42:37 AM (6 years ago)
 - File:
 - 
          
- 1 edited
 
- 
          trunk/kernel/syscalls/sys_sem.c (modified) (3 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
trunk/kernel/syscalls/sys_sem.c
r626 r635 75 75 printk("\n[ERROR] in %s : unmapped semaphore pointer %x / thread %x in process %x / cycle %d\n", 76 76 __FUNCTION__ , (intptr_t)vaddr, this->trdid, process->pid, (uint32_t)hal_get_cycles() ); 77 hal_vmm_display( process , false );78 77 #endif 79 78 this->errno = EINVAL; … … 113 112 printk("\n[ERROR] in %s GETVALUE: unmapped buffer %x / thread %x in process %x / cycle %d\n", 114 113 __FUNCTION__ , (intptr_t)current_value, this->trdid, process->pid, (uint32_t)hal_get_cycles() ); 115 hal_vmm_display( process , false );116 114 #endif 117 115 this->errno = EINVAL; … … 158 156 printk("\n[ERROR] in %s WAIT: semaphore %x not found / thread %x in process %x / cycle %d\n", 159 157 __FUNCTION__ , (intptr_t)vaddr, this->trdid, process->pid, (uint32_t)hal_get_cycles() ); 160 hal_vmm_display( process , true );161 158 #endif 162 159 this->errno = EINVAL;  
Note: See TracChangeset
          for help on using the changeset viewer.
      