DEBUG with Capital Letters

This commit is contained in:
2026-03-11 15:24:45 +01:00
parent 1dd4e728d4
commit 9d409317e2
7 changed files with 34 additions and 42 deletions

View File

@@ -61,7 +61,7 @@ struct cpu_status_t* scheduler_schedule(struct cpu_status_t* context)
DEBUG("current_process={pid=%u, name='%s', root_page_table[virt]=%p}", current_process->pid, current_process->name, current_process->root_page_table);
load_cr3(VIRT_TO_PHYS((uint64_t)current_process->root_page_table));
DEBUG("loaded process pml4 into cr3");
DEBUG("Loaded process PML4 into CR3");
return current_process->context;
}