Kernel: Remove outdated code to dump memory layout after exec load

This commit is contained in:
Andreas Kling 2021-02-08 19:07:29 +01:00
commit d746639171
Notes: sideshowbarker 2024-07-18 22:29:48 +09:00

View file

@ -504,11 +504,6 @@ int Process::do_exec(NonnullRefPtr<FileDescription> main_program_description, Ve
m_space = load_result.space.release_nonnull();
MemoryManager::enter_space(*m_space);
#if EXEC_DEBUG
dbgln("Memory layout after ELF load:");
dump_regions();
#endif
m_executable = main_program_description->custody();
m_arguments = arguments;
m_environment = environment;