Changeset 35ebd42 in mainline
- Timestamp:
- 2017-10-24T04:55:29Z (7 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8ddaaac
- Parents:
- b639d56
- Location:
- kernel
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/arch/ia32/src/interrupt.c
rb639d56 r35ebd42 88 88 istate->esi, istate->edi, istate->ebp, 89 89 istate_from_uspace(istate) ? istate->esp : 90 (uint ptr_t) &istate->esp);90 (uint32_t) &istate->esp); 91 91 } 92 92 -
kernel/generic/src/debug/panic.c
rb639d56 r35ebd42 62 62 printf("\n"); 63 63 } else if (cat == PANIC_BADTRAP) { 64 printf("bad trap %" PRIu n". %s\n", address,64 printf("bad trap %" PRIuPTR ". %s\n", address, 65 65 BANNER_RIGHT); 66 66 if (fmt) { … … 96 96 printf("THE=%p: ", THE); 97 97 if (THE != NULL) { 98 printf("pe=%" PRIu n" thread=%p task=%p cpu=%p as=%p"98 printf("pe=%" PRIuPTR " thread=%p task=%p cpu=%p as=%p" 99 99 " magic=%#" PRIx32 "\n", THE->preemption, 100 100 THE->thread, THE->task, THE->cpu, THE->as, THE->magic); -
kernel/generic/src/lib/ra.c
rb639d56 r35ebd42 353 353 link = hash_table_find(&span->used, &key); 354 354 if (!link) { 355 panic("Freeing segment which is not known to be used (base=% "356 PRIxn ", size=%" PRIdn ").", base, size);355 panic("Freeing segment which is not known to be used (base=%zx" 356 ", size=%zd).", base, size); 357 357 } 358 358 seg = hash_table_get_inst(link, ra_segment_t, uh_link); … … 447 447 irq_spinlock_unlock(&arena->lock, true); 448 448 449 panic("Freeing to wrong arena (base=%" PRIx n ", size=%" PRIdn ").",449 panic("Freeing to wrong arena (base=%" PRIxPTR ", size=%zd).", 450 450 base, size); 451 451 } -
kernel/generic/src/mm/backend_user.c
rb639d56 r35ebd42 129 129 if (rc != EOK) { 130 130 log(LF_USPACE, LVL_FATAL, 131 "Page-in request for page %#" PRIx n131 "Page-in request for page %#" PRIxPTR 132 132 " at pager %d failed with error %d.", 133 133 upage, pager_info->pager, rc);
Note:
See TracChangeset
for help on using the changeset viewer.