1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 03:17:34 +00:00

Profiler: Symbolicate samples using coredump file

This commit is contained in:
Itamar 2020-11-14 12:13:59 +02:00 committed by Andreas Kling
parent 5392f42731
commit d89858f42a
3 changed files with 76 additions and 7 deletions

View file

@ -198,5 +198,9 @@ bool generate_profile(pid_t pid)
if (!prompt_to_stop_profiling())
return false;
if (profiling_disable(pid) < 0) {
return false;
}
return true;
}