Namespaces
Variants
Actions

How to discover the amount of free RAM

Jump to: navigation, search
Article Metadata

Article
Created: User:Nobody (27 Feb 2007)
Last edited: hamishwillee (26 Jul 2012)

The amount of free RAM can be logged by putting the following code somewhere that is frequently called:

#include <hal.h>
...
TInt freeRam = 0;
HAL::Get( HAL::EMemoryRAMFree, freeRam );
// If you want to trace RAM usage
#ifdef _DEBUG
RDebug::Print(_L("MyDLL:FreeRam now = %d"), freeRam );
#endif

And the .mmp file may also need this adding:

LIBRARY hal.lib


Use User::Available() for getting the total free space currently available on the current thread's heap and the space available in the largest free block.

This page was last modified on 26 July 2012, at 06:02.
114 page views in the last 30 days.
Nokia Developer aims to help you create apps and publish them so you can connect with users around the world.

京ICP备05048969号  © Copyright Nokia 2013 All rights reserved