Changed the names of the block allocator object caches to avoid confusion

with the ones of the block cache.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35917 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2010-03-19 18:27:28 +00:00
parent 515c6d1bff
commit 59a4ec37b5
+2 -1
View File
@@ -166,7 +166,8 @@ block_allocator_init_boot()
{
for (int index = 0; kBlockSizes[index] != 0; index++) {
char name[32];
snprintf(name, sizeof(name), "block cache: %lu", kBlockSizes[index]);
snprintf(name, sizeof(name), "block allocator: %lu",
kBlockSizes[index]);
uint32 flags = CACHE_DURING_BOOT;
size_t size = kBlockSizes[index];