mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00:00
LibSymbolication+SystemMonitor+bt: Move symbolication back in-process
Process-separated symbolication was cute, but ultimately the threat model is kinda silly. We're already *running* the binary, but we're afraid to parse its symbol table? :^) This commit makes SystemMonitor and bt do symbolication in-process. SymbolServer and the symbol user will be removed separately.
This commit is contained in:
@@ -45,7 +45,7 @@ void ThreadStackWidget::set_ids(pid_t pid, pid_t tid)
|
||||
|
||||
void ThreadStackWidget::refresh()
|
||||
{
|
||||
auto symbols = SymbolClient::symbolicate_thread(m_pid, m_tid);
|
||||
auto symbols = Symbolication::symbolicate_thread(m_pid, m_tid);
|
||||
|
||||
StringBuilder builder;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user