Changeset ae5aa90 in mainline for kernel/generic/src/ipc/kbox.c
- Timestamp:
- 2009-05-14T21:29:00Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 9ba6262
- Parents:
- 8ebc8bf4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/ipc/kbox.c
r8ebc8bf4 rae5aa90 85 85 86 86 if (have_kb_thread) { 87 LOG(" join kb.thread..\n");87 LOG("Join kb.thread."); 88 88 thread_join(TASK->kb.thread); 89 89 thread_detach(TASK->kb.thread); 90 LOG(" join done\n");90 LOG("...join done."); 91 91 TASK->kb.thread = NULL; 92 92 } … … 109 109 ipl_t ipl; 110 110 111 LOG("kbox_proc_phone_hungup()\n");112 113 111 /* Was it our debugger, who hung up? */ 114 112 if (call->sender == TASK->udebug.debugger) { 115 113 /* Terminate debugging session (if any). */ 116 LOG(" kbox: terminate debug session\n");114 LOG("Terminate debugging session."); 117 115 ipl = interrupts_disable(); 118 116 spinlock_lock(&TASK->lock); … … 121 119 interrupts_restore(ipl); 122 120 } else { 123 LOG(" kbox: was not debugger\n");124 } 125 126 LOG(" kbox: continue with hangup message\n");121 LOG("Was not debugger."); 122 } 123 124 LOG("Continue with hangup message."); 127 125 IPC_SET_RETVAL(call->data, 0); 128 126 ipc_answer(&TASK->kb.box, call); … … 146 144 mutex_unlock(&TASK->kb.cleanup_lock); 147 145 148 LOG(" phone list is empty\n");146 LOG("Phone list is empty."); 149 147 *last = true; 150 148 } else { … … 170 168 171 169 (void)arg; 172 LOG(" kbox_thread_proc()\n");170 LOG("Starting."); 173 171 done = false; 174 172 … … 202 200 } 203 201 204 LOG(" kbox: finished\n");202 LOG("Exiting."); 205 203 } 206 204
Note:
See TracChangeset
for help on using the changeset viewer.