mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 02:58:11 +00:00
ELFLoader: Remove an uninteresting debug log message
This is showing up at the boundary between kernel and userspace stack frames in backtraces, and looks silly.
This commit is contained in:
parent
f083031a27
commit
2abfab2892
1 changed files with 0 additions and 1 deletions
|
@ -88,7 +88,6 @@ String ELFLoader::symbolicate(u32 address) const
|
|||
if (!m_sorted_symbols_region) {
|
||||
m_sorted_symbols_region = MM.allocate_kernel_region(PAGE_ROUND_UP(m_image.symbol_count() * sizeof(SortedSymbol)), "Sorted symbols");
|
||||
sorted_symbols = (SortedSymbol*)m_sorted_symbols_region->vaddr().as_ptr();
|
||||
dbgprintf("sorted_symbols: %p\n", sorted_symbols);
|
||||
size_t index = 0;
|
||||
m_image.for_each_symbol([&](auto& symbol) {
|
||||
sorted_symbols[index++] = { symbol.value(), symbol.name() };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue