Changeset 764c302 in mainline for kernel/generic/src/proc/task.c
- Timestamp:
- 2006-07-28T23:25:10Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- c049309
- Parents:
- 42d3be3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/proc/task.c
r42d3be3 r764c302 116 116 ta->main_thread = NULL; 117 117 ta->refcount = 0; 118 ta->context = THE->context; 118 119 119 120 ta->capabilities = 0; … … 356 357 357 358 spinlock_lock(&t->lock); 358 printf("%s(%lld): address=%#zx, as=%#zx, ActiveCalls: %zd",359 t->name, t->taskid, t , t->as, atomic_get(&t->active_calls));359 printf("%s(%lld): context=%ld, address=%#zx, as=%#zx, ActiveCalls: %zd", 360 t->name, t->taskid, t->context, t, t->as, atomic_get(&t->active_calls)); 360 361 for (j=0; j < IPC_MAX_PHONES; j++) { 361 362 if (t->phones[j].callee)
Note:
See TracChangeset
for help on using the changeset viewer.