Changeset 280a27e in mainline for generic/src/proc/task.c


Ignore:
Timestamp:
2006-04-16T13:16:44Z (19 years ago)
Author:
Josef Cejka <malyzelenyhnus@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
50de918
Parents:
c624b96
Message:

Printf ported back from uspace to kernel.
Printf calls changed to match new conventions.

File:
1 edited

Legend:

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

    rc624b96 r280a27e  
    213213               
    214214                        spinlock_lock(&t->lock);
    215                         printf("%s: address=%P, taskid=%Q, as=%P, ActiveCalls: %d",
     215                        printf("%s: address=%#zX, taskid=%#llX, as=%#zX, ActiveCalls: %zd",
    216216                                t->name, t, t->taskid, t->as, atomic_get(&t->active_calls));
    217217                        for (j=0; j < IPC_MAX_PHONES; j++) {
    218218                                if (t->phones[j].callee)
    219                                         printf(" Ph(%d): %P ", j, t->phones[j].callee);
     219                                        printf(" Ph(%zd): %#zX ", j, t->phones[j].callee);
    220220                        }
    221221                        printf("\n");
Note: See TracChangeset for help on using the changeset viewer.