Icon View Thread

The following is the text of the current message along with any replies.
Messages 1 to 2 of 2 total
Thread Fastmm4 and Memory Usage
Mon, Feb 10 2014 8:46 PMPermanent Link

John Easley

I've recompiled a 3.26 DBSRVR using Fastmm4.  Now the Memory Usage on the app main form (and the Server Admin Utility) both report 0.00 Mb.  How can I update the app to report an accurate usage?

TIA,

John
Tue, Feb 11 2014 10:15 AMPermanent Link

Tim Young [Elevate Software]

Elevate Software, Inc.

Avatar

Email timyoung@elevatesoft.com

John,

<< I've recompiled a 3.26 DBSRVR using Fastmm4.  Now the Memory Usage on the
app main form (and the Server Admin Utility) both report 0.00 Mb.  How can I
update the app to report an accurate usage? >>

You'll have to use the FastMM memory reporting:

     with FastGetHeapStatus do
        begin
        ShowMessage('Total Address Space: '+IntToString(TotalAddrSpace));
        ShowMessage('Total Uncommitted: '+IntToString(TotalUncommitted));
        ShowMessage('Total Committed: '+IntToString(TotalCommitted));
        ShowMessage('Total Allocated: '+IntToString(TotalAllocated));
        ShowMessage('Total Free: '+IntToString(TotalFree));
        ShowMessage('Free Small: '+IntToString(FreeSmall));
        ShowMessage('Free Big: '+IntToString(FreeBig));
        ShowMessage('Unused: '+IntToString(Unused));
        ShowMessage('Overhead: '+IntToString(Overhead));
        end;

Tim Young
Elevate Software
www.elevatesoft.com
Image