Changeset ae5aa90 in mainline for kernel/generic/src/ipc/kbox.c


Ignore:
Timestamp:
2009-05-14T21:29:00Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
9ba6262
Parents:
8ebc8bf4
Message:

Clean up various log messages, mostly udebug.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/generic/src/ipc/kbox.c

    r8ebc8bf4 rae5aa90  
    8585       
    8686        if (have_kb_thread) {
    87                 LOG("join kb.thread..\n");
     87                LOG("Join kb.thread.");
    8888                thread_join(TASK->kb.thread);
    8989                thread_detach(TASK->kb.thread);
    90                 LOG("join done\n");
     90                LOG("...join done.");
    9191                TASK->kb.thread = NULL;
    9292        }
     
    109109        ipl_t ipl;
    110110
    111         LOG("kbox_proc_phone_hungup()\n");
    112 
    113111        /* Was it our debugger, who hung up? */
    114112        if (call->sender == TASK->udebug.debugger) {
    115113                /* Terminate debugging session (if any). */
    116                 LOG("kbox: terminate debug session\n");
     114                LOG("Terminate debugging session.");
    117115                ipl = interrupts_disable();
    118116                spinlock_lock(&TASK->lock);
     
    121119                interrupts_restore(ipl);
    122120        } 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.");
    127125        IPC_SET_RETVAL(call->data, 0);
    128126        ipc_answer(&TASK->kb.box, call);
     
    146144                mutex_unlock(&TASK->kb.cleanup_lock);
    147145
    148                 LOG("phone list is empty\n");
     146                LOG("Phone list is empty.");
    149147                *last = true;
    150148        } else {
     
    170168
    171169        (void)arg;
    172         LOG("kbox_thread_proc()\n");
     170        LOG("Starting.");
    173171        done = false;
    174172
     
    202200        }
    203201
    204         LOG("kbox: finished\n");
     202        LOG("Exiting.");
    205203}
    206204
Note: See TracChangeset for help on using the changeset viewer.