Changeset 5462a30 in mainline for uspace/app/trace/trace.c


Ignore:
Timestamp:
2009-07-21T22:02:36Z (15 years ago)
Author:
Jiri Svoboda <jirik.svoboda@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
6e3a44a
Parents:
84683fdc
Message:

Remove accidentally commited debugging messages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/app/trace/trace.c

    r84683fdc r5462a30  
    617617        (void) arg;
    618618
    619         printf("cev_fibril()\n");
    620619        while (true) {
    621                 printf("cev_fibril: wait for cev_valid == 0\n");
    622620                fibril_mutex_lock(&state_lock);
    623621                while (cev_valid)
     
    625623                fibril_mutex_unlock(&state_lock);
    626624
    627                 printf("cev_fibril: wait for key\n");
    628 
    629625                if (!console_get_event(fphone(stdin), &cev))
    630626                        return -1;
    631 
    632                 printf("cev_fibril: broadcast cev_valid = 1\n");
    633627
    634628                fibril_mutex_lock(&state_lock);
     
    669663
    670664        while (!done) {
    671                 printf("trace_task: wait for cev_valid || abort_trace\n");
    672665                fibril_mutex_lock(&state_lock);
    673666                while (!cev_valid && !abort_trace)
    674667                        fibril_condvar_wait(&state_cv, &state_lock);
    675668                fibril_mutex_unlock(&state_lock);
    676 
    677                 printf("trace_task: got something\n");
    678669
    679670                ev = cev;
Note: See TracChangeset for help on using the changeset viewer.