Changes in / [eb40d86:1eaa3cf] in mainline
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/src/debug/panic.c
reb40d86 r1eaa3cf 96 96 printf("THE=%p: ", THE); 97 97 if (THE != NULL) { 98 printf("p d=%" PRIun " thread=%p task=%p cpu=%p as=%p"98 printf("pe=%" PRIun " thr=%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);107 101 } else 108 102 printf("invalid\n"); -
uspace/srv/fs/ext4fs/ext4fs_ops.c
reb40d86 r1eaa3cf 876 876 if (rc != EOK) 877 877 return rc; 878 if (NULL == inst) 879 return ENOENT; 878 880 879 881 ext4_superblock_t *sb = inst->filesystem->superblock; -
uspace/srv/fs/mfs/mfs_ops.c
reb40d86 r1eaa3cf 1201 1201 *count = sbi->nfree_zones; 1202 1202 1203 return rc;1203 return EOK; 1204 1204 } 1205 1205
Note:
See TracChangeset
for help on using the changeset viewer.