From 59a4ec37b514d994d4ac6d8be8ea9e7aff4b5379 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Fri, 19 Mar 2010 18:27:28 +0000 Subject: [PATCH] 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 --- src/system/kernel/slab/allocator.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/system/kernel/slab/allocator.cpp b/src/system/kernel/slab/allocator.cpp index 2eedab0d55..d12787ac22 100644 --- a/src/system/kernel/slab/allocator.cpp +++ b/src/system/kernel/slab/allocator.cpp @@ -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];