--- a/userlibandfileserver/fileserver/inc/f32dbg.h Fri Mar 12 15:50:11 2010 +0200
+++ b/userlibandfileserver/fileserver/inc/f32dbg.h Mon Mar 15 12:45:50 2010 +0200
@@ -194,10 +194,17 @@
class TIOCacheValues
{
public:
- TInt iFreeCount; // number of requests on free queue
- TInt iCloseCount; // number of requests on close queue
- TInt iAllocated; // number of dynamically allocated requests
- TInt iTotalCount; // number of permanently & dynamically allocated requests
+ TInt iFreeCount; // current number of requests on free queue
+ TInt iCloseCount; // current number of requests on close queue
+ TInt iAllocated; // no longer used
+ TInt iTotalCount; // current number of requests
+ TInt iRequestCountPeak; // peak number of requests, i.e. peak value reached by iTotalCount
+
+
+ // the same again but for the OperationAllocator
+ TInt iOpFreeCount;
+ TInt iOpRequestCount;
+ TInt iOpRequestCountPeak;
};
class TFileCacheStats