mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 11:18:11 +00:00
Kernel: Display virtual addresses as V%p instead of L%x
The L was a leftover from when these were called linear addresses.
This commit is contained in:
parent
3439a479af
commit
e29fd3cd20
8 changed files with 19 additions and 19 deletions
|
@ -261,7 +261,7 @@ Process* Process::fork(RegisterDump& regs)
|
|||
|
||||
for (auto& region : m_regions) {
|
||||
#ifdef FORK_DEBUG
|
||||
dbgprintf("fork: cloning Region{%p} \"%s\" L%x\n", region.ptr(), region->name().characters(), region->vaddr().get());
|
||||
dbgprintf("fork: cloning Region{%p} \"%s\" V%08x\n", region.ptr(), region->name().characters(), region->vaddr().get());
|
||||
#endif
|
||||
auto cloned_region = region.clone();
|
||||
child->m_regions.append(move(cloned_region));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue