Changeset fbf7b4c in mainline for generic/src/proc/thread.c
- Timestamp:
- 2006-06-18T10:52:41Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e600ec4
- Parents:
- 281994b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
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.