Runtime.MemoryUsed - Is It Accurate?

Is anyone using Runtime.MemoryUsed in their Linux apps? If so, is it accurate?

My experience with 2014r2.1 is that the reported value is very low and doesn’t change. For instance, a running Web App shows just 1.7 MB. I wish that were true but Top reports considerably more of each type of memory usage.

it can only show the memory Xojo runtime allocate itself.
Can’t see plugin or system allocations.

[quote=141223:@Christian Schmitz]it can only show the memory Xojo runtime allocate itself.
Can’t see plugin or system allocations.[/quote]
Is that true for all operating systems or just Linux?

for all.

with MBS Plugins, you can check DarwinTaskInfoMBS.ResidentSize for Mac and other properties there.
For Windows, the WindowsProcessMemoryInfoMBS class.

Thanks Christian!