Changeset 101 for trunk/kernel/syscalls/sys_thread_sleep.c
- Timestamp:
- Jun 29, 2017, 4:44:52 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/syscalls/sys_thread_sleep.c
r50 r101 31 31 { 32 32 thread_dmsg("\n[INFO] %s : thread %x in process %x goes to sleep at cycle %d\n", 33 __FUNCTION__, CURRENT_THREAD->trdid, CURRENT_PROCESS->pid, hal_ time_stamp() );33 __FUNCTION__, CURRENT_THREAD->trdid, CURRENT_PROCESS->pid, hal_get_cycles() ); 34 34 35 35 thread_block( CURRENT_THREAD , THREAD_BLOCKED_GLOBAL ); … … 37 37 38 38 thread_dmsg("\n[INFO] %s : thread %x in process %x resume at cycle\n", 39 __FUNCTION__, CURRENT_THREAD->trdid, CURRENT_PROCESS->pid, hal_ time_stamp() );39 __FUNCTION__, CURRENT_THREAD->trdid, CURRENT_PROCESS->pid, hal_get_cycles() ); 40 40 41 41 return 0;
Note: See TracChangeset
for help on using the changeset viewer.