Skip to content

Commit 8e6448f

Browse files
committed
naming
Created using spr 1.3.4
1 parent 5969bb3 commit 8e6448f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler-rt/lib/lsan/lsan_common.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -294,7 +294,7 @@ struct DirectMemoryAccessor {
294294
void *LoadPtr(uptr p) const { return *reinterpret_cast<void **>(p); }
295295
};
296296

297-
struct CopyLoader {
297+
struct CopyMemoryAccessor {
298298
void Init(uptr begin, uptr end) {
299299
this->begin = begin;
300300
buffer.clear();
@@ -585,7 +585,7 @@ static void ProcessThreads(SuspendedThreadsList const &suspended_threads,
585585
}
586586

587587
if (flags()->use_detached) {
588-
CopyLoader accessor;
588+
CopyMemoryAccessor accessor;
589589
InternalMmapVector<tid_t> known_threads;
590590
GetRunningThreadsLocked(&known_threads);
591591
Sort(done_threads.data(), done_threads.size());

0 commit comments

Comments
 (0)