Changeset fbf7b4c in mainline for generic/src/proc/task.c


Ignore:
Timestamp:
2006-06-18T10:52:41Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e600ec4
Parents:
281994b
Message:

make kernel prints case consistent

File:
1 edited

Legend:

Unmodified
Added
Removed
  • generic/src/proc/task.c

    r281994b rfbf7b4c  
    356356               
    357357                        spinlock_lock(&t->lock);
    358                         printf("%s(%lld): address=%#zX, as=%#zX, ActiveCalls: %zd",
     358                        printf("%s(%lld): address=%#zx, as=%#zx, ActiveCalls: %zd",
    359359                                t->name, t->taskid, t, t->as, atomic_get(&t->active_calls));
    360360                        for (j=0; j < IPC_MAX_PHONES; j++) {
    361361                                if (t->phones[j].callee)
    362                                         printf(" Ph(%zd): %#zX ", j, t->phones[j].callee);
     362                                        printf(" Ph(%zd): %#zx ", j, t->phones[j].callee);
    363363                        }
    364364                        printf("\n");
Note: See TracChangeset for help on using the changeset viewer.