Thanx for the replies. I already have got some APIs for ram, rom and free ram informations. I need to find out the overall CPU load as well as CPU load for each processes running and over all network activity also.
For people, who doesn't know this: Use these lines in any text or UI program and you can print the values either on the screen itself or write into a file.
Forum posts: 28
Forum posts: 12
UserHal::MemoryInfo(info);
TInt freeMemory = info().iFreeRamInBytes;
nuuneoi
Lead Developer
ZenitCore Co., Ltd.
Forum posts: 60
HAL::Get(HALData::EMemoryRAMFree, val);
//val holds ram free bytes
A.
www.telesoftas.com
algis
Forum posts: 14
Thanx for the replies. I already have got some APIs for ram, rom and free ram informations. I need to find out the overall CPU load as well as CPU load for each processes running and over all network activity also.
If anybody has any solution, please let me know.
Here is API which gives the memory informations:
User::LeaveIfError(HAL::Get(HALData::EMemoryRAM, iRamSize));
User::LeaveIfError(HAL::Get(HALData::EMemoryRAMFree, iFreeRamSize));
User::LeaveIfError(HAL::Get(HALData::EMemoryROM, iRomSize));
For people, who doesn't know this: Use these lines in any text or UI program and you can print the values either on the screen itself or write into a file.
Brs,
OJ