I wrote a C program in Linux that mallocs memory, ran it in a loop, and TOP didn\'t show any memory consumption.
then I\'ve done something with that memory, and TOP
Are you using compiler optimizations? Maybe the optimizer has removed the allocation since you're not using the allocated resources?