[Lldb-commits] [PATCH] D125107: [lldb] Parallelize fetching symbol files in crashlog.py
Jonas Devlieghere via Phabricator via lldb-commits
lldb-commits at lists.llvm.org
Fri May 6 11:00:16 PDT 2022
JDevlieghere added inline comments.
================
Comment at: lldb/examples/python/crashlog.py:272
if self.show_symbol_progress():
- print('Getting symbols for %s %s...\n' % (uuid_str, self.path), end=' ')
+ print('Getting symbols for %s %s...' % (uuid_str, self.path))
if os.path.exists(self.dsymForUUIDBinary):
----------------
The changes to this line and the one below are the result of "Getting symbols [...]" and "Resolved symbols [...]" no longer appearing after each other. By parallelizing this operation you get a bunch of consecutive "Getting symbols [...]" followed by a bunch of "Resolved symbols [...]" lines.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D125107/new/
https://reviews.llvm.org/D125107
More information about the lldb-commits
mailing list