Browse Source

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.
Rodrigo Tobar 3 years ago
parent
commit
356d5821e7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Userland/Applications/SystemMonitor/ThreadStackWidget.cpp

+ 1 - 1
Userland/Applications/SystemMonitor/ThreadStackWidget.cpp

@@ -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) {