Changeset 566 for trunk/kernel/syscalls/sys_thread_sleep.c
- Timestamp:
 - Oct 4, 2018, 11:50:21 PM (7 years ago)
 - File:
 - 
          
- 1 edited
 
- 
          trunk/kernel/syscalls/sys_thread_sleep.c (modified) (2 diffs)
 
 
Legend:
- Unmodified
 - Added
 - Removed
 
- 
        
trunk/kernel/syscalls/sys_thread_sleep.c
r506 r566 39 39 tm_start = hal_get_cycles(); 40 40 if( DEBUG_SYS_THREAD_SLEEP < tm_start ) 41 printk("\n[DBG] %s : thread %x blocked / process %x/ cycle %d\n",42 __FUNCTION__ , this , this->process->pid , (uint32_t)tm_start );41 printk("\n[DBG] %s : thread %x n process %x blocked / cycle %d\n", 42 __FUNCTION__ , this->trdid, this->process->pid , (uint32_t)tm_start ); 43 43 #endif 44 44 … … 49 49 tm_end = hal_get_cycles(); 50 50 if( DEBUG_SYS_THREAD_SLEEP < tm_end ) 51 printk("\n[DBG] %s : thread %x resume / process %x/ cycle %d\n",52 __FUNCTION__ , this , this->process->pid , (uint32_t)tm_end );51 printk("\n[DBG] %s : thread %x in process %x resume / cycle %d\n", 52 __FUNCTION__ , this->trdid, this->process->pid , (uint32_t)tm_end ); 53 53 #endif 54 54  
Note: See TracChangeset
          for help on using the changeset viewer.
      