From 91312c915dc6f9c2b08e5ae4b473d7283b537080 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Thu, 29 May 2008 21:21:33 +0000 Subject: [PATCH] Changed tracing output prefix from "cache" to "block cache". git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@25714 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/system/kernel/cache/block_cache.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/system/kernel/cache/block_cache.cpp b/src/system/kernel/cache/block_cache.cpp index 971efd7938..a207099cb8 100644 --- a/src/system/kernel/cache/block_cache.cpp +++ b/src/system/kernel/cache/block_cache.cpp @@ -183,7 +183,7 @@ class Action : public AbstractTraceEntry { virtual void AddDump(TraceOutput& out) { - out.Print("cache %p, %s transaction %p (id %ld)%s" + out.Print("block cache %p, %s transaction %p (id %ld)%s" ", %ld/%ld blocks", fCache, fLabel, fTransaction, fID, fSub ? " sub" : "", fNumBlocks, fSubNumBlocks); } @@ -215,7 +215,7 @@ class Detach : public AbstractTraceEntry { virtual void AddDump(TraceOutput& out) { - out.Print("cache %p, detach transaction %p (id %ld)" + out.Print("block cache %p, detach transaction %p (id %ld)" "from transaction %p (id %ld)%s", fCache, fNewTransaction, fNewID, fTransaction, fID, fSub ? " sub" : ""); @@ -256,7 +256,7 @@ class Abort : public AbstractTraceEntry { virtual void AddDump(TraceOutput& out) { - out.Print("cache %p, abort transaction " + out.Print("block cache %p, abort transaction " "%p (id %ld), blocks", fCache, fTransaction, fID); for (int32 i = 0; i < fNumBlocks && !out.IsFull(); i++) out.Print(" %Ld", fBlocks[i]);