Skip to content

Commit fdb29f7

Browse files
committed
[scudo] Rename AllocatorRingBuffer into scudo:ring_buffer
To maintain the convention of Scudo names starting with "scudo:", which is used by some tooling to categorize memory usage. Reviewed By: Chia-hungDuan Differential Revision: https://reviews.llvm.org/D157102
1 parent 4acc3ff commit fdb29f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler-rt/lib/scudo/standalone/combined.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1496,7 +1496,7 @@ class Allocator {
14961496
map(/*Addr=*/nullptr,
14971497
roundUp(ringBufferSizeInBytes(AllocationRingBufferSize),
14981498
getPageSizeCached()),
1499-
"AllocatorRingBuffer"));
1499+
"scudo:ring_buffer"));
15001500
auto *RingBuffer = reinterpret_cast<AllocationRingBuffer *>(RawRingBuffer);
15011501
RingBuffer->Size = AllocationRingBufferSize;
15021502
static_assert(sizeof(AllocationRingBuffer) %

0 commit comments

Comments
 (0)