mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-30 21:28:40 +00:00
SystemMonitor: Request symbolication wihout source positions
The Stack tab doesn't display this information anyway, so there's no need to have it calculated and returned to us.
This commit is contained in:
committed by
Brian Gianforcaro
parent
08428aadad
commit
356d5821e7
@@ -115,7 +115,7 @@ void ThreadStackWidget::refresh()
|
||||
{
|
||||
Threading::BackgroundAction<Vector<Symbolication::Symbol>>::create(
|
||||
[pid = m_pid, tid = m_tid](auto&) {
|
||||
return Symbolication::symbolicate_thread(pid, tid);
|
||||
return Symbolication::symbolicate_thread(pid, tid, Symbolication::IncludeSourcePosition::No);
|
||||
},
|
||||
|
||||
[weak_this = make_weak_ptr()](auto result) {
|
||||
|
||||
Reference in New Issue
Block a user