mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 21:47:43 +00:00
Kernel: Fix bitrotted FORK_DEBUG logging code
This commit is contained in:
parent
9c3c117f05
commit
7a7f6a24e9
1 changed files with 1 additions and 1 deletions
|
@ -303,7 +303,7 @@ Process* Process::fork(RegisterDump& regs)
|
||||||
|
|
||||||
for (auto& region : m_regions) {
|
for (auto& region : m_regions) {
|
||||||
#ifdef FORK_DEBUG
|
#ifdef FORK_DEBUG
|
||||||
dbgprintf("fork: cloning Region{%p} \"%s\" V%08x\n", region.ptr(), region->name().characters(), region->vaddr().get());
|
dbg() << "fork: cloning Region{" << ®ion << "} '" << region.name() << "' @ " << region.vaddr();
|
||||||
#endif
|
#endif
|
||||||
auto cloned_region = region.clone();
|
auto cloned_region = region.clone();
|
||||||
child->m_regions.append(move(cloned_region));
|
child->m_regions.append(move(cloned_region));
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue