Changeset 600 for trunk/kernel/libk/busylock.c
- Timestamp:
- Nov 10, 2018, 5:38:51 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/libk/busylock.c
r580 r600 95 95 96 96 // display message on kernel TXT0 97 printk("\n ### thread[%x,%x] ACQUIRE lock %s\n",98 thread_cxy, thread_ptr, lock_type_str[lock->type] );97 printk("\n[%s] thread[%x,%x] ACQUIRE lock %s\n", 98 __FUNCTION__, this->process->pid, this->trdid, lock_type_str[lock->type] ); 99 99 } 100 100 #endif … … 137 137 138 138 // display message on kernel TXT0 139 printk("\n ### thread[%x,%x] RELEASE lock %s\n",140 thread_cxy, thread_ptr, lock_type_str[lock->type] );139 printk("\n[%s] thread[%x,%x] RELEASE lock %s\n", 140 __FUNCTION__, this->process->pid, this->trdid, lock_type_str[lock->type] ); 141 141 } 142 142 #endif
Note: See TracChangeset
for help on using the changeset viewer.