Changeset 406 for trunk/kernel/syscalls/sys_thread_sleep.c
- Timestamp:
- Aug 29, 2017, 12:03:37 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_thread_sleep.c
r296 r406 32 32 thread_t * this = CURRENT_THREAD; 33 33 34 thread_dmsg("\n[ INFO] %s : thread %x in process %x goes to sleep at cycle %d\n",34 thread_dmsg("\n[DMSG] %s : thread %x in process %x goes to sleep at cycle %d\n", 35 35 __FUNCTION__, this->trdid, this->process->pid, hal_get_cycles() ); 36 36 … … 38 38 sched_yield( NULL ); 39 39 40 thread_dmsg("\n[ INFO] %s : thread %x in process %x resume at cycle\n",40 thread_dmsg("\n[DMSG] %s : thread %x in process %x resume at cycle\n", 41 41 __FUNCTION__, this->trdid, this->process->pid, hal_get_cycles() ); 42 42
Note: See TracChangeset
for help on using the changeset viewer.