Changeset fbf7b4c in mainline for generic/src/proc
- Timestamp:
- 2006-06-18T10:52:41Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e600ec4
- Parents:
- 281994b
- Location:
- generic/src/proc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/proc/task.c
r281994b rfbf7b4c 356 356 357 357 spinlock_lock(&t->lock); 358 printf("%s(%lld): address=%#z X, as=%#zX, ActiveCalls: %zd",358 printf("%s(%lld): address=%#zx, as=%#zx, ActiveCalls: %zd", 359 359 t->name, t->taskid, t, t->as, atomic_get(&t->active_calls)); 360 360 for (j=0; j < IPC_MAX_PHONES; j++) { 361 361 if (t->phones[j].callee) 362 printf(" Ph(%zd): %#z X", j, t->phones[j].callee);362 printf(" Ph(%zd): %#zx ", j, t->phones[j].callee); 363 363 } 364 364 printf("\n"); -
generic/src/proc/thread.c
r281994b rfbf7b4c 537 537 538 538 t = (thread_t *) node->value[i]; 539 printf("%s: address=%#z X, tid=%zd, state=%s, task=%#zX, code=%#zX, stack=%#zX, cpu=",539 printf("%s: address=%#zx, tid=%zd, state=%s, task=%#zx, code=%#zx, stack=%#zx, cpu=", 540 540 t->name, t, t->tid, thread_states[t->state], t->task, t->thread_code, t->kstack); 541 541 if (t->cpu) … … 544 544 printf("none"); 545 545 if (t->state == Sleeping) { 546 printf(", kst=%#z X", t->kstack);547 printf(", wq=%#z X", t->sleep_queue);546 printf(", kst=%#zx", t->kstack); 547 printf(", wq=%#zx", t->sleep_queue); 548 548 } 549 549 printf("\n");
Note:
See TracChangeset
for help on using the changeset viewer.
