[scudo][Fuchsia] Increase MaxNumCachedHint

This brings the value closer to other platforms and allows
for future improvements, see D133897.
This commit is contained in:
Alex Brachet 2022-09-29 20:57:10 +00:00
parent 545b954251
commit 2449f42427
1 changed files with 1 additions and 1 deletions

View File

@ -235,7 +235,7 @@ struct FuchsiaSizeClassConfig {
static const uptr MinSizeLog = 5;
static const uptr MidSizeLog = 8;
static const uptr MaxSizeLog = 17;
static const u32 MaxNumCachedHint = 10;
static const u32 MaxNumCachedHint = 12;
static const uptr MaxBytesCachedLog = 10;
static const uptr SizeDelta = Chunk::getHeaderSize();
};