mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 04:58:13 +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:
parent
08428aadad
commit
356d5821e7
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue