diff --git a/compiler-rt/lib/scudo/standalone/primary64.h b/compiler-rt/lib/scudo/standalone/primary64.h --- a/compiler-rt/lib/scudo/standalone/primary64.h +++ b/compiler-rt/lib/scudo/standalone/primary64.h @@ -65,8 +65,8 @@ DCHECK(isAligned(reinterpret_cast(this), alignof(ThisT))); DCHECK_EQ(PrimaryBase, 0U); // Reserve the space required for the Primary. - PrimaryBase = reinterpret_cast( - map(nullptr, PrimarySize, nullptr, MAP_NOACCESS, &Data)); + PrimaryBase = reinterpret_cast(map( + nullptr, PrimarySize, "scudo:primary_reserve", MAP_NOACCESS, &Data)); u32 Seed; const u64 Time = getMonotonicTime();