summaryrefslogtreecommitdiff
path: root/lib/scudo/scudo_allocator_secondary.h
diff options
context:
space:
mode:
authorKostya Kortchinsky <kostyak@google.com>2018-07-20 15:07:17 +0000
committerKostya Kortchinsky <kostyak@google.com>2018-07-20 15:07:17 +0000
commit4f6d4b8d42668e3b665636f8a0e8a3e2cec32483 (patch)
treed99b855f28a0c74ee2b31e44c21db836a0e83874 /lib/scudo/scudo_allocator_secondary.h
parent3cd9b54748fd042ae510388c0b711e478a957b00 (diff)
[scudo] Simplify internal names (NFC)
Summary: There is currently too much redundancy in the class/variable/* names in Scudo: - we are in the namespace `__scudo`, so there is no point in having something named `ScudoX` to end up with a final name of `__scudo::ScudoX`; - there are a lot of types/* that have `Allocator` in the name, given that Scudo is an allocator I figure this doubles up as well. So change a bunch of the Scudo names to make them shorter, less redundant, and overall simpler. They should still be pretty self explaining (or at least it looks so to me). The TSD part will be done in another CL (eg `__scudo::ScudoTSD`). Reviewers: alekseyshl, eugenis Reviewed By: alekseyshl Subscribers: delcypher, #sanitizers, llvm-commits Differential Revision: https://reviews.llvm.org/D49505 git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@337557 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/scudo/scudo_allocator_secondary.h')
-rw-r--r--lib/scudo/scudo_allocator_secondary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/scudo/scudo_allocator_secondary.h b/lib/scudo/scudo_allocator_secondary.h
index 425ef4d26..ff6246e25 100644
--- a/lib/scudo/scudo_allocator_secondary.h
+++ b/lib/scudo/scudo_allocator_secondary.h
@@ -66,7 +66,7 @@ namespace LargeChunk {
}
} // namespace LargeChunk
-class ScudoLargeMmapAllocator {
+class LargeMmapAllocator {
public:
void Init() {
internal_memset(this, 0, sizeof(*this));