Changes in kernel/generic/src/debug/panic.c [9d58539:adec6a29] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/debug/panic.c
r9d58539 radec6a29 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.