mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03: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
Notes:
sideshowbarker
2024-07-18 02:12:03 +09:00
Author: https://github.com/rtobar Commit: https://github.com/SerenityOS/serenity/commit/356d5821e78 Pull-request: https://github.com/SerenityOS/serenity/pull/10481 Reviewed-by: https://github.com/alimpfard Reviewed-by: https://github.com/bgianfo
@ -115,7 +115,7 @@ void ThreadStackWidget::refresh()
|
|||||||
{
|
{
|
||||||
Threading::BackgroundAction<Vector<Symbolication::Symbol>>::create(
|
Threading::BackgroundAction<Vector<Symbolication::Symbol>>::create(
|
||||||
[pid = m_pid, tid = m_tid](auto&) {
|
[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) {
|
[weak_this = make_weak_ptr()](auto result) {
|
||||||
|
Loading…
Reference in New Issue
Block a user