1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:57:42 +00:00

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
parent 15a1d9aa94
commit d746639171

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;