From: robertc <> Date: Sun, 28 Jul 2002 17:31:06 +0000 (+0000) Subject: Guido Serassio: add a description line to CacheMgr Async I/O counters table. X-Git-Tag: SQUID_3_0_PRE1~866 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=272716d1d1bec3447e598ccfb8ffdebdca1027cb;p=thirdparty%2Fsquid.git Guido Serassio: add a description line to CacheMgr Async I/O counters table. --- diff --git a/src/fs/aufs/async_io.cc b/src/fs/aufs/async_io.cc index f47b5131d3..98117807b2 100644 --- a/src/fs/aufs/async_io.cc +++ b/src/fs/aufs/async_io.cc @@ -1,6 +1,6 @@ /* - * $Id: async_io.cc,v 1.13 2002/04/13 23:07:55 hno Exp $ + * $Id: async_io.cc,v 1.14 2002/07/28 11:31:06 robertc Exp $ * * DEBUG: section 32 Asynchronous Disk I/O * AUTHOR: Pete Bentley @@ -316,6 +316,7 @@ void aioStats(StoreEntry * sentry) { storeAppendPrintf(sentry, "ASYNC IO Counters:\n"); + storeAppendPrintf(sentry, "Operation\t# Requests\n"); storeAppendPrintf(sentry, "open\t%d\n", squidaio_counts.open); storeAppendPrintf(sentry, "close\t%d\n", squidaio_counts.close); storeAppendPrintf(sentry, "cancel\t%d\n", squidaio_counts.cancel);