We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4cc6a08 commit b2b0e6cCopy full SHA for b2b0e6c
compiler-rt/lib/lsan/lsan_common.cpp
@@ -712,11 +712,11 @@ static bool ReportUnsuspendedThreads(
712
713
Sort(threads.data(), threads.size());
714
715
- InternalMmapVector<tid_t> unsuspended;
716
- GetRunningThreadsLocked(&unsuspended);
+ InternalMmapVector<tid_t> known_threads;
+ GetRunningThreadsLocked(&known_threads);
717
718
bool succeded = true;
719
- for (auto os_id : unsuspended) {
+ for (auto os_id : known_threads) {
720
uptr i = InternalLowerBound(threads, os_id);
721
if (i >= threads.size() || threads[i] != os_id) {
722
succeded = false;
0 commit comments