Changeset 280a27e in mainline for generic/src/proc/task.c
- Timestamp:
- 2006-04-16T13:16:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 50de918
- Parents:
- c624b96
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/proc/task.c
rc624b96 r280a27e 213 213 214 214 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", 216 216 t->name, t, t->taskid, t->as, atomic_get(&t->active_calls)); 217 217 for (j=0; j < IPC_MAX_PHONES; j++) { 218 218 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); 220 220 } 221 221 printf("\n");
Note:
See TracChangeset
for help on using the changeset viewer.