Changeset 600 for trunk/kernel/libk/remote_busylock.c
- Timestamp:
- Nov 10, 2018, 5:38:51 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/libk/remote_busylock.c
r580 r600 106 106 107 107 // display message on kernel TXT0 108 printk("\n ### thread[%x,%x] ACQUIRE lock %s\n",109 thread_cxy, thread_ptr, lock_type_str[type] );108 printk("\n[%s] thread[%x,%x] ACQUIRE lock %s\n", 109 __FUNCTION_, this->process->pid, this->trdid, lock_type_str[type] ); 110 110 } 111 111 #endif … … 154 154 155 155 // display message on kernel TXT0 156 printk("\n ### thread[%x,%x] RELEASE lock %s\n",157 thread_cxy, thread_ptr, lock_type_str[type] );156 printk("\n[%s] thread[%x,%x] RELEASE lock %s\n", 157 __FUNCTION__, this->process->pid, this->trdid, lock_type_str[type] ); 158 158 } 159 159 #endif
Note: See TracChangeset
for help on using the changeset viewer.