userlibandfileserver/fileserver/sfile/sf_std.inl
branchRCL_3
changeset 21 e7d2d738d3c2
parent 0 a41df078684a
child 42 a179b74831c9
--- a/userlibandfileserver/fileserver/sfile/sf_std.inl	Fri Mar 12 15:50:11 2010 +0200
+++ b/userlibandfileserver/fileserver/sfile/sf_std.inl	Mon Mar 15 12:45:50 2010 +0200
@@ -310,12 +310,19 @@
 
 #if defined(_USE_CONTROLIO) || defined(_DEBUG) || defined(_DEBUG_RELEASE)
 // Class RequestAllocator
-/** returns number of dynamically allocated requests  */
-TInt RequestAllocator::AllocatedCount()
-{ return iAllocated;}
 /** returns number of permanently & dynamically allocated requests  */
-TInt RequestAllocator::TotalCount()
-{ return iAllocated + iAllocNum;}
+TInt RequestAllocator::RequestCount()
+	{ return iRequestCount;}
+TInt RequestAllocator::RequestCountPeak()
+	{ return iRequestCountPeak;}
+
+TInt OperationAllocator::FreeCount()
+	{ return iFreeCount;}
+TInt OperationAllocator::RequestCount()
+	{ return iRequestCount;}
+TInt OperationAllocator::RequestCountPeak()
+	{ return iRequestCountPeak;}
+
 #endif
 
 //---------------------------------------------------------------------------------------------------------------------