Changeset fbcfd458 in mainline for generic/src/proc/thread.c
- Timestamp:
- 2006-03-18T23:02:08Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b4b45210
- Parents:
- ba81cab
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
generic/src/proc/thread.c
rba81cab rfbcfd458 184 184 spinlock_lock(&t->lock); 185 185 186 ASSERT(! (t->state == Ready)); 187 186 188 i = (t->priority < RQ_COUNT -1) ? ++t->priority : t->priority; 187 189 … … 416 418 for (cur=threads_head.next; cur!=&threads_head; cur=cur->next) { 417 419 t = list_get_instance(cur, thread_t, threads_link); 418 printf("%s: address=%P, tid=%d, state=%s ,task=%P, code=%P, stack=%P, cpu=",420 printf("%s: address=%P, tid=%d, state=%s\n\ttask=%P, code=%P, stack=%P, cpu=", 419 421 t->name, t, t->tid, thread_states[t->state], t->task, t->thread_code, t->kstack); 420 422 if (t->cpu)
Note:
See TracChangeset
for help on using the changeset viewer.