Changeset 619 for trunk/kernel/libk/remote_busylock.c
- Timestamp:
- Feb 12, 2019, 1:15:47 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kernel/libk/remote_busylock.c
r600 r619 101 101 (XPTR( local_cxy , this ) == DEBUG_BUSYLOCK_THREAD_XP) ) 102 102 { 103 // get cluster and local pointer of target thread104 cxy_t thread_cxy = GET_CXY( DEBUG_BUSYLOCK_THREAD_XP );105 thread_t * thread_ptr = GET_PTR( DEBUG_BUSYLOCK_THREAD_XP );106 107 // display message on kernel TXT0108 103 printk("\n[%s] thread[%x,%x] ACQUIRE lock %s\n", 109 __FUNCTION_ , this->process->pid, this->trdid, lock_type_str[type] );104 __FUNCTION__, this->process->pid, this->trdid, lock_type_str[type] ); 110 105 } 111 106 #endif … … 149 144 (XPTR( local_cxy , this ) == DEBUG_BUSYLOCK_THREAD_XP) ) 150 145 { 151 // get cluster and local pointer of target thread152 cxy_t thread_cxy = GET_CXY( DEBUG_BUSYLOCK_THREAD_XP );153 thread_t * thread_ptr = GET_PTR( DEBUG_BUSYLOCK_THREAD_XP );154 155 // display message on kernel TXT0156 146 printk("\n[%s] thread[%x,%x] RELEASE lock %s\n", 157 147 __FUNCTION__, this->process->pid, this->trdid, lock_type_str[type] );
Note: See TracChangeset
for help on using the changeset viewer.