tsan: remove meta from internal allocator

I am puzzled why it is even there.

llvm-svn: 214026
This commit is contained in:
Dmitry Vyukov 2014-07-26 10:06:11 +00:00
parent 0c455f3fea
commit 07fdaf97e4
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ static const uptr kInternalAllocatorNumRegions =
typedef TwoLevelByteMap<(kInternalAllocatorNumRegions >> 12), 1 << 12> ByteMap;
#endif
typedef SizeClassAllocator32<
kInternalAllocatorSpace, kInternalAllocatorSize, 16, InternalSizeClassMap,
kInternalAllocatorSpace, kInternalAllocatorSize, 0, InternalSizeClassMap,
kInternalAllocatorRegionSizeLog, ByteMap> PrimaryInternalAllocator;
typedef SizeClassAllocatorLocalCache<PrimaryInternalAllocator>