Changeset eb40d86 in mainline for kernel/generic/src/debug/panic.c
- Timestamp:
- 2013-09-13T15:57:46Z (12 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- fd7dbbb
- Parents:
- 1eaa3cf (diff), cc8044e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/debug/panic.c
r1eaa3cf reb40d86 96 96 printf("THE=%p: ", THE); 97 97 if (THE != NULL) { 98 printf("p e=%" PRIun " thr=%p task=%p cpu=%p as=%p"98 printf("pd=%" PRIun " thread=%p task=%p cpu=%p as=%p" 99 99 " magic=%#" PRIx32 "\n", THE->preemption_disabled, 100 100 THE->thread, THE->task, THE->cpu, THE->as, THE->magic); 101 102 if (THE->thread != NULL) 103 printf("thread=\"%s\"\n", THE->thread->name); 104 105 if (THE->task != NULL) 106 printf("task=\"%s\"\n", THE->task->name); 101 107 } else 102 108 printf("invalid\n");
Note:
See TracChangeset
for help on using the changeset viewer.